mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-02-23 22:24:46 +00:00
11 lines
198 B
TypeScript
11 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[]
|
|
}
|