Files
study-bible-project/node_modules/docx/dist/file/table/table-cell-spacing.d.ts
T

12 lines
501 B
TypeScript

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;