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

11 lines
463 B
TypeScript

import { IContext, IXmlableObject, XmlComponent } from '../../xml-components';
import { ISectionPropertiesOptions } from './section-properties/section-properties';
export declare class Body extends XmlComponent {
private readonly sections;
constructor();
addSection(options: ISectionPropertiesOptions): void;
prepForXml(context: IContext): IXmlableObject | undefined;
push(component: XmlComponent): void;
private createSectionParagraph;
}