Fix App.jsx two-page workflow JSX render and update study app layout
This commit is contained in:
+14
@@ -0,0 +1,14 @@
|
||||
import { BaseXmlComponent, IContext } from './base';
|
||||
import { IXmlableObject } from './xmlable-object';
|
||||
export declare const EMPTY_OBJECT: {};
|
||||
export declare abstract class XmlComponent extends BaseXmlComponent {
|
||||
protected root: (BaseXmlComponent | string | any)[];
|
||||
constructor(rootKey: string);
|
||||
prepForXml(context: IContext): IXmlableObject | undefined;
|
||||
addChildElement(child: XmlComponent | string): XmlComponent;
|
||||
}
|
||||
export declare abstract class IgnoreIfEmptyXmlComponent extends XmlComponent {
|
||||
private readonly includeIfEmpty;
|
||||
constructor(rootKey: string, includeIfEmpty?: boolean);
|
||||
prepForXml(context: IContext): IXmlableObject | undefined;
|
||||
}
|
||||
Reference in New Issue
Block a user