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 {
|
2022-08-31 07:52:27 +01:00
|
|
|
public constructor(public readonly options: IHeaderOptions = { children: [] }) {}
|
2019-07-31 08:48:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
export class Footer {
|
2022-08-31 07:52:27 +01:00
|
|
|
public constructor(public readonly options: IHeaderOptions = { children: [] }) {}
|
2019-07-31 08:48:02 +01:00
|
|
|
}
|