pelican-jdr/src/types/TocLine.ts

6 lines
88 B
TypeScript
Raw Normal View History

2023-02-07 23:30:55 +01:00
export default interface TocLine {
order: number;
text: string;
anchor: string;
}