export type TocNode = {
anchor?: string;
name: string;
dest: any;
isLeaf: boolean;
kids: TocNode[];
newWindow?: boolean;
url?: string;
};
export type ContentsModel = {
content: TocNode | null;
collapsedNodes: any;
};
export type ContentsMsg = {
type: 'reset';
};