Fix App.jsx two-page workflow JSX render and update study app layout
This commit is contained in:
+20
@@ -0,0 +1,20 @@
|
||||
import { FileChild } from '../file-child';
|
||||
import { XmlComponent } from '../xml-components';
|
||||
import { ITableOfContentsOptions } from './table-of-contents-properties';
|
||||
type ToCEntry = {
|
||||
readonly title: string;
|
||||
readonly level: number;
|
||||
readonly page?: number;
|
||||
readonly href?: string;
|
||||
};
|
||||
export declare class TableOfContents extends FileChild {
|
||||
constructor(alias?: string, { contentChildren, cachedEntries, beginDirty, ...properties }?: ITableOfContentsOptions & {
|
||||
readonly contentChildren?: readonly (XmlComponent | string)[];
|
||||
readonly cachedEntries?: readonly ToCEntry[];
|
||||
readonly beginDirty?: boolean;
|
||||
});
|
||||
private getTabStopsForLevel;
|
||||
private buildCachedContentRun;
|
||||
private buildCachedContentParagraphChild;
|
||||
}
|
||||
export {};
|
||||
Reference in New Issue
Block a user