# types/diagram.types.ts

> 4 lines of code and 1 definition.

Tree: Site tree
Language: typescript
Layer: infrastructure
Canonical: https://banes-lab.com/anatomy/tree#file-types-diagram-types-ts
Source text: https://banes-lab.com/assets/sources/source.b4c2baf4445a94614ca46bece9b00d277ec418049303db3565df5595ac7e094d.generated.txt

## Definitions

- `WalkStep` (interface_declaration, line 1, exported)

## Source

```typescript
export interface WalkStep {
    readonly id: string;
    readonly kind: "edge" | "node";
}
```
