Fix App.jsx two-page workflow JSX render and update study app layout
This commit is contained in:
+33
@@ -0,0 +1,33 @@
|
||||
import { DocPropertiesOptions } from '../../drawing/doc-properties/doc-properties';
|
||||
import { IChangedAttributesProperties } from '../../track-revision/track-revision';
|
||||
import { IContext, IXmlableObject, XmlComponent } from '../../xml-components';
|
||||
import { IFloating } from '../../drawing';
|
||||
import { OutlineOptions } from '../../drawing/inline/graphic/graphic-data/pic/shape-properties/outline/outline';
|
||||
import { SolidFillOptions } from '../../drawing/inline/graphic/graphic-data/pic/shape-properties/outline/solid-fill';
|
||||
import { IMediaTransformation } from '../../media';
|
||||
type CoreImageOptions = {
|
||||
readonly transformation: IMediaTransformation;
|
||||
readonly floating?: IFloating;
|
||||
readonly altText?: DocPropertiesOptions;
|
||||
readonly outline?: OutlineOptions;
|
||||
readonly solidFill?: SolidFillOptions;
|
||||
readonly insertion?: IChangedAttributesProperties;
|
||||
readonly deletion?: IChangedAttributesProperties;
|
||||
};
|
||||
type RegularImageOptions = {
|
||||
readonly type: "jpg" | "png" | "gif" | "bmp";
|
||||
readonly data: Buffer | string | Uint8Array | ArrayBuffer;
|
||||
};
|
||||
type SvgMediaOptions = {
|
||||
readonly type: "svg";
|
||||
readonly data: Buffer | string | Uint8Array | ArrayBuffer;
|
||||
readonly fallback: RegularImageOptions;
|
||||
};
|
||||
export type IImageOptions = (RegularImageOptions | SvgMediaOptions) & CoreImageOptions;
|
||||
export declare const standardizeData: (data: string | Buffer | Uint8Array | ArrayBuffer) => Buffer | Uint8Array | ArrayBuffer;
|
||||
export declare class ImageRun extends XmlComponent {
|
||||
private readonly imageData;
|
||||
constructor(options: IImageOptions);
|
||||
prepForXml(context: IContext): IXmlableObject | undefined;
|
||||
}
|
||||
export {};
|
||||
Reference in New Issue
Block a user