Files
docx-js/src/file/header.ts

15 lines
365 B
TypeScript
Raw Normal View History

2019-07-31 08:48:02 +01:00
import { Paragraph } from "./paragraph";
import { Table } from "./table";
export interface IHeaderOptions {
2020-08-01 17:58:16 +01:00
readonly children: (Paragraph | Table)[];
2019-07-31 08:48:02 +01:00
}
export class Header {
constructor(public readonly options: IHeaderOptions = { children: [] }) {}
}
export class Footer {
constructor(public readonly options: IHeaderOptions = { children: [] }) {}
}