# tools/core/constants/binding.constants.ts

> 5 lines of code and 3 definitions.

Tree: Coordination tree
Language: typescript
Layer: infrastructure
Canonical: https://banes-lab.com/anatomy/coordination#file-coordination-tools-core-constants-binding-constants-ts
Source text: https://banes-lab.com/assets/sources/source.08cfea8fc5743097746626e67563b8c472bebf64bf6aaff8db968799a33afe00.generated.txt

## Definitions

- `BINDING_PATH` (lexical_declaration, line 4, exported)
- `SLOT_CONSUMERS` (lexical_declaration, line 6, exported)
- `RESOLUTION_STATES` (lexical_declaration, line 8, exported)

## Source

```typescript
import { AGENT_ROOT, TEMPLATE_ROOT } from "./template.constants.ts";
import { surfacePath } from "../../../config/surface.config.ts";

export const BINDING_PATH = surfacePath("binding");

export const SLOT_CONSUMERS = [TEMPLATE_ROOT, AGENT_ROOT];

export const RESOLUTION_STATES = ["RESOLVED", "ABSENT", "DEFERRED"];
```
