Fix App.jsx two-page workflow JSX render and update study app layout
This commit is contained in:
+22
@@ -0,0 +1,22 @@
|
||||
import { FileChild } from '../file-child';
|
||||
import { FootnoteReferenceRun } from '../footnotes';
|
||||
import { IContext, IXmlableObject } from '../xml-components';
|
||||
import { CheckBox } from '../checkbox';
|
||||
import { DeletedTextRun, InsertedTextRun } from '../track-revision';
|
||||
import { ColumnBreak, PageBreak } from './formatting/break';
|
||||
import { Bookmark, ExternalHyperlink, InternalHyperlink } from './links';
|
||||
import { Math } from './math';
|
||||
import { IParagraphPropertiesOptions } from './properties';
|
||||
import { ImageRun, Run, SequentialIdentifier, SimpleField, SimpleMailMergeField, SymbolRun, TextRun } from './run';
|
||||
import { Comment, CommentRangeEnd, CommentRangeStart, CommentReference, Comments } from './run/comment-run';
|
||||
export type ParagraphChild = TextRun | ImageRun | SymbolRun | Bookmark | PageBreak | ColumnBreak | SequentialIdentifier | FootnoteReferenceRun | InternalHyperlink | ExternalHyperlink | InsertedTextRun | DeletedTextRun | Math | SimpleField | SimpleMailMergeField | Comments | Comment | CommentRangeStart | CommentRangeEnd | CommentReference | CheckBox;
|
||||
export type IParagraphOptions = {
|
||||
readonly text?: string;
|
||||
readonly children?: readonly ParagraphChild[];
|
||||
} & IParagraphPropertiesOptions;
|
||||
export declare class Paragraph extends FileChild {
|
||||
private readonly properties;
|
||||
constructor(options: string | IParagraphOptions);
|
||||
prepForXml(context: IContext): IXmlableObject | undefined;
|
||||
addRunToFront(run: Run): Paragraph;
|
||||
}
|
||||
Reference in New Issue
Block a user