Fix App.jsx two-page workflow JSX render and update study app layout
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
import { XmlComponent } from '../xml-components';
|
||||
import { Percentage, UniversalMeasure } from '../../util/values';
|
||||
export declare const CellSpacingType: {
|
||||
readonly DXA: "dxa";
|
||||
readonly NIL: "nil";
|
||||
};
|
||||
export type ITableCellSpacingProperties = {
|
||||
readonly value: number | Percentage | UniversalMeasure;
|
||||
readonly type?: (typeof CellSpacingType)[keyof typeof CellSpacingType];
|
||||
};
|
||||
export declare const createTableCellSpacing: ({ type, value }: ITableCellSpacingProperties) => XmlComponent;
|
||||
Reference in New Issue
Block a user