Files
study-bible-project/node_modules/docx/dist/file/styles/defaults/document-defaults.d.ts
T

13 lines
568 B
TypeScript

import { IParagraphStylePropertiesOptions } from '../../paragraph/properties';
import { IRunStylePropertiesOptions } from '../../paragraph/run/properties';
import { XmlComponent } from '../../xml-components';
export type IDocumentDefaultsOptions = {
readonly paragraph?: IParagraphStylePropertiesOptions;
readonly run?: IRunStylePropertiesOptions;
};
export declare class DocumentDefaults extends XmlComponent {
private readonly runPropertiesDefaults;
private readonly paragraphPropertiesDefaults;
constructor(options: IDocumentDefaultsOptions);
}