> ## Documentation Index
> Fetch the complete documentation index at: https://docs.metabind.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# EdgeSet

> A single edge or an array of edges, used where multiple edges can be specified.

```typescript theme={null}
type EdgeSet = Edge | Array<Edge>;
```

<ParamField path="Edge" type="string">
  A single [Edge](/bindjs/types/Edge) value (e.g. `"top"`, `"horizontal"`, `"all"`).
</ParamField>

<ParamField path="Array<Edge>" type="Edge[]">
  An array of [Edge](/bindjs/types/Edge) values (e.g. `["top", "leading"]`).
</ParamField>
