Files
blog/node_modules/hexo-util/dist/toc_obj.d.ts
2025-07-16 16:30:56 +00:00

9 lines
179 B
TypeScript

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