11 lines
149 B
TypeScript
11 lines
149 B
TypeScript
export interface TocItem {
|
|
level: number;
|
|
text: string;
|
|
href: string;
|
|
}
|
|
|
|
export interface MobTocProps {
|
|
tocs: TocItem[];
|
|
title?: string;
|
|
}
|