5 lines
88 B
TypeScript
5 lines
88 B
TypeScript
export default interface TocLine {
|
|
order: number;
|
|
text: string;
|
|
anchor: string;
|
|
}
|