9 lines
179 B
TypeScript
9 lines
179 B
TypeScript
interface Result {
|
|
text: string;
|
|
id: string;
|
|
level: number;
|
|
unnumbered?: boolean;
|
|
}
|
|
declare function tocObj(str: string, options?: {}): Result[];
|
|
export = tocObj;
|