Files
study-bible-project/node_modules/docx/dist/file/table/table-row/table-row-height.d.ts
T

9 lines
400 B
TypeScript

import { XmlComponent } from '../../xml-components';
import { PositiveUniversalMeasure } from '../../../util/values';
export declare const HeightRule: {
readonly AUTO: "auto";
readonly ATLEAST: "atLeast";
readonly EXACT: "exact";
};
export declare const createTableRowHeight: (value: number | PositiveUniversalMeasure, rule: (typeof HeightRule)[keyof typeof HeightRule]) => XmlComponent;