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
+14
View File
@@ -0,0 +1,14 @@
import { Element as XmlElement } from 'xml-js';
import { IXmlableObject, XmlComponent } from '.';
import { IContext } from './base';
export declare const convertToXmlComponent: (element: XmlElement) => ImportedXmlComponent | string | undefined;
export declare class ImportedXmlComponent extends XmlComponent {
static fromXmlString(importedContent: string): ImportedXmlComponent;
constructor(rootKey: string, _attr?: any);
push(xmlComponent: XmlComponent | string): void;
}
export declare class ImportedRootElementAttributes extends XmlComponent {
private readonly _attr;
constructor(_attr: any);
prepForXml(_: IContext): IXmlableObject;
}