# types/card.types.ts

> 8 lines of code and 2 definitions.

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

## Definitions

- `ShareImage` (interface_declaration, line 1, exported)
- `PageShare` (interface_declaration, line 6, exported)

## Source

```typescript
export interface ShareImage {
    readonly alt: string;
    readonly source: string;
}

export interface PageShare {
    readonly headline: string;
    readonly tagline: string;
}
```
