pashto-grammar/src/types.d.ts

6 lines
115 B
TypeScript
Raw Normal View History

2023-02-04 12:20:48 +00:00
type TableOfContents = {
depth: number,
value: string,
id: string,
children?: TableOfContents,
}[];