hedgedoc/markdown-it-plugins/src/toc/toc-ast.ts

12 lines
198 B
TypeScript
Raw Normal View History

/*
* SPDX-FileCopyrightText: 2023 The HedgeDoc developers (see AUTHORS file)
*
* SPDX-License-Identifier: MIT
*/
export interface TocAst {
level: number
name: string
children: TocAst[]
}