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

14 lines
389 B
TypeScript

import { Paragraph } from './paragraph';
import { Table } from './table';
export type IHeaderOptions = {
readonly children: readonly (Paragraph | Table)[];
};
export declare class Header {
readonly options: IHeaderOptions;
constructor(options?: IHeaderOptions);
}
export declare class Footer {
readonly options: IHeaderOptions;
constructor(options?: IHeaderOptions);
}