Fix App.jsx two-page workflow JSX render and update study app layout
This commit is contained in:
+20
@@ -0,0 +1,20 @@
|
||||
import { XmlAttributeComponent, XmlComponent } from '../../xml-components';
|
||||
export type ILatentStyleExceptionAttributesProperties = {
|
||||
readonly name?: string;
|
||||
readonly uiPriority?: string;
|
||||
readonly qFormat?: string;
|
||||
readonly semiHidden?: string;
|
||||
readonly unhideWhenUsed?: string;
|
||||
};
|
||||
export declare class LatentStyleExceptionAttributes extends XmlAttributeComponent<ILatentStyleExceptionAttributesProperties> {
|
||||
protected readonly xmlKeys: {
|
||||
name: string;
|
||||
uiPriority: string;
|
||||
qFormat: string;
|
||||
semiHidden: string;
|
||||
unhideWhenUsed: string;
|
||||
};
|
||||
}
|
||||
export declare class LatentStyleException extends XmlComponent {
|
||||
constructor(attributes: ILatentStyleExceptionAttributesProperties);
|
||||
}
|
||||
Reference in New Issue
Block a user