diff options
Diffstat (limited to 'src/ts')
| -rw-r--r-- | src/ts/types/app.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/ts/types/app.ts b/src/ts/types/app.ts index ba28416..e1d8917 100644 --- a/src/ts/types/app.ts +++ b/src/ts/types/app.ts @@ -76,6 +76,13 @@ export type Dates = { update: string; }; +export type Heading = { + depth: number; + id: string; + children: Heading[]; + title: string; +}; + export type PageInfo = { endCursor: string; hasNextPage: boolean; |
