# types/site.types.ts

> 18 lines of code and 3 definitions.

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

## Definitions

- `Closing` (interface_declaration, line 1, exported)
- `LicenseBadge` (interface_declaration, line 10, exported)
- `License` (interface_declaration, line 15, exported)

## Source

```typescript
export interface Closing {
    readonly icon: string;
    readonly linked?: boolean;
    readonly note?: string;
    readonly stacked?: boolean;
    readonly terms: readonly string[];
    readonly title: string;
}

export interface LicenseBadge {
    readonly alt: string;
    readonly source: string;
}

export interface License {
    readonly badges: readonly LicenseBadge[];
    readonly href: string;
    readonly lead: string;
    readonly name: string;
}
```
