mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-02-24 01:10:58 +00:00
12 lines
198 B
TypeScript
12 lines
198 B
TypeScript
|
/*
|
||
|
* SPDX-FileCopyrightText: 2023 The HedgeDoc developers (see AUTHORS file)
|
||
|
*
|
||
|
* SPDX-License-Identifier: MIT
|
||
|
*/
|
||
|
|
||
|
export interface TocAst {
|
||
|
level: number
|
||
|
name: string
|
||
|
children: TocAst[]
|
||
|
}
|