Files
study-bible-project/node_modules/docx/dist/file/paragraph/run/run-components/text.d.ts
T

11 lines
330 B
TypeScript

import { SpaceType } from '../../../shared';
import { XmlComponent } from '../../../xml-components';
type ITextOptions = {
readonly space?: (typeof SpaceType)[keyof typeof SpaceType];
readonly text?: string;
};
export declare class Text extends XmlComponent {
constructor(options: string | ITextOptions);
}
export {};