Fix App.jsx two-page workflow JSX render and update study app layout
This commit is contained in:
+3
@@ -0,0 +1,3 @@
|
||||
export * from './math-degree';
|
||||
export * from './math-radical';
|
||||
export * from './math-radical-properties';
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
import { XmlComponent } from '../../../xml-components';
|
||||
export declare class MathDegreeHide extends XmlComponent {
|
||||
constructor();
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
import { XmlComponent } from '../../../xml-components';
|
||||
import { MathComponent } from '../math-component';
|
||||
export declare class MathDegree extends XmlComponent {
|
||||
constructor(children?: readonly MathComponent[]);
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
import { XmlComponent } from '../../../xml-components';
|
||||
export declare class MathRadicalProperties extends XmlComponent {
|
||||
constructor(hasDegree: boolean);
|
||||
}
|
||||
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
import { XmlComponent } from '../../../xml-components';
|
||||
import { MathComponent } from '../math-component';
|
||||
export type IMathRadicalOptions = {
|
||||
readonly children: readonly MathComponent[];
|
||||
readonly degree?: readonly MathComponent[];
|
||||
};
|
||||
export declare class MathRadical extends XmlComponent {
|
||||
constructor(options: IMathRadicalOptions);
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
Reference in New Issue
Block a user