Files
woonoow-docs/lib/toc.ts
2025-05-25 03:20:17 +07:00

10 lines
131 B
TypeScript

export interface TocItem {
level: number;
text: string;
href: string;
}
export interface MobTocProps {
tocs: TocItem[];
}