# types/panel.types.ts

> 9 lines of code and 2 definitions.

Tree: Build tree
Language: typescript
Layer: infrastructure
Canonical: https://banes-lab.com/anatomy/build#file-build-types-panel-types-ts
Source text: https://banes-lab.com/assets/sources/source.2ddd5a31edba50618b44da0f2245f21ca3996113489da30988919df523814a88.generated.txt

## Definitions

- `PayloadPanel` (interface_declaration, line 1, exported)
- `PanelSection` (interface_declaration, line 6, exported)

## Source

```typescript
export interface PayloadPanel {
    readonly kind: string;
    readonly tag: string | null;
}

export interface PanelSection {
    readonly id: string;
    readonly panels: readonly PayloadPanel[];
    readonly prose: string;
}
```
