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

15 lines
368 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 {
readonly children: Array<Paragraph | Table>;
}
export class Header {
constructor(public readonly options: IHeaderOptions = { children: [] }) {}
}
export class Footer {
constructor(public readonly options: IHeaderOptions = { children: [] }) {}
}