| 1 | export interface ChapterDisplay { |
| 2 | name: string; |
| 3 | icons: string; |
| 4 | banner: string; |
| 5 | region: string; |
| 6 | displayValue: string; |
| 7 | country: string[]; |
| 8 | code: string; |
| 9 | hello: string; |
| 10 | nationality: string; |
| 11 | people?: Array<{ |
| 12 | name: string; |
| 13 | pfp: string; |
| 14 | role?: string; |
| 15 | }>; |
| 16 | slug: string; |
| 17 | link: string; |
| 18 | } |
| 19 | |
| 20 | export interface ChapterRegionData { |
| 21 | id?: string; |
nothing calls this directly
no outgoing calls
no test coverage detected