6 lines
70 B
TypeScript
6 lines
70 B
TypeScript
export type Toc = {
|
|
value: string
|
|
depth: number
|
|
url: string
|
|
}[]
|