# types/readme.types.ts

> 42 lines of code and 8 definitions.

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

## Definitions

- `ReadmeLesson` (interface_declaration, line 1, exported)
- `ReadmeSubsection` (interface_declaration, line 6, exported)
- `ChapterSummary` (interface_declaration, line 11, exported)
- `ReadmeStep` (interface_declaration, line 16, exported)
- `ReadmeSection` (interface_declaration, line 21, exported)
- `ReadmeTab` (interface_declaration, line 30, exported)
- `ReadmePage` (interface_declaration, line 36, exported)
- `ReadmeInputs` (interface_declaration, line 43, exported)

## Source

```typescript
export interface ReadmeLesson {
    readonly principle: string;
    readonly problem: string;
}

export interface ReadmeSubsection {
    readonly content: string | null;
    readonly title: string;
}

export interface ChapterSummary {
    readonly summary: string;
    readonly tab: string;
}

export interface ReadmeStep {
    readonly steps: readonly string[];
    readonly title: string;
}

export interface ReadmeSection {
    readonly diagram: string | null;
    readonly id: string;
    readonly intro: string | null;
    readonly lessons: readonly ReadmeLesson[];
    readonly subsections: readonly ReadmeSubsection[];
    readonly title: string;
}

export interface ReadmeTab {
    readonly id: string;
    readonly label: string;
    readonly sections: readonly ReadmeSection[];
}

export interface ReadmePage {
    readonly description: string;
    readonly page: string;
    readonly tabs: readonly ReadmeTab[];
    readonly title: string;
}

export interface ReadmeInputs {
    readonly exhibits: readonly ReadmePage[];
    readonly faq: ReadmePage;
    readonly heading: string;
    readonly methodology: ReadmePage;
    readonly subtitle: string;
}
```
