Fix App.jsx two-page workflow JSX render and update study app layout

This commit is contained in:
nmemmert
2026-05-26 17:14:30 -04:00
commit f47a41ce6f
4459 changed files with 1059845 additions and 0 deletions
+20
View File
@@ -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 {};