Fix App.jsx two-page workflow JSX render and update study app layout
This commit is contained in:
+3
@@ -0,0 +1,3 @@
|
||||
import { XmlComponent } from '../../xml-components';
|
||||
export declare const createHyperlinkClick: (linkId: string, hasXmlNs: boolean) => XmlComponent;
|
||||
export declare const createHyperlinkHover: (linkId: string, hasXmlNs: boolean) => XmlComponent;
|
||||
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
import { IContext, IXmlableObject, XmlComponent } from '../../xml-components';
|
||||
export type DocPropertiesOptions = {
|
||||
readonly name: string;
|
||||
readonly description?: string;
|
||||
readonly title?: string;
|
||||
readonly id?: string;
|
||||
};
|
||||
export declare class DocProperties extends XmlComponent {
|
||||
private readonly docPropertiesUniqueNumericId;
|
||||
constructor({ name, description, title, id }?: DocPropertiesOptions);
|
||||
prepForXml(context: IContext): IXmlableObject | undefined;
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
Reference in New Issue
Block a user