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