Fix App.jsx two-page workflow JSX render and update study app layout
This commit is contained in:
+23
@@ -0,0 +1,23 @@
|
||||
export declare class StyleLevel {
|
||||
readonly styleName: string;
|
||||
readonly level: number;
|
||||
constructor(styleName: string, level: number);
|
||||
}
|
||||
export type ITableOfContentsOptions = {
|
||||
readonly captionLabel?: string;
|
||||
readonly entriesFromBookmark?: string;
|
||||
readonly captionLabelIncludingNumbers?: string;
|
||||
readonly sequenceAndPageNumbersSeparator?: string;
|
||||
readonly tcFieldIdentifier?: string;
|
||||
readonly hyperlink?: boolean;
|
||||
readonly tcFieldLevelRange?: string;
|
||||
readonly pageNumbersEntryLevelsRange?: string;
|
||||
readonly headingStyleRange?: string;
|
||||
readonly entryAndPageNumberSeparator?: string;
|
||||
readonly seqFieldIdentifierForPrefix?: string;
|
||||
readonly stylesWithLevels?: readonly StyleLevel[];
|
||||
readonly useAppliedParagraphOutlineLevel?: boolean;
|
||||
readonly preserveTabInEntries?: boolean;
|
||||
readonly preserveNewLineInEntries?: boolean;
|
||||
readonly hideTabAndPageNumbersInWebView?: boolean;
|
||||
};
|
||||
Reference in New Issue
Block a user