2024-02-09 14:04:42 +02:00
|
|
|
import { ParagraphJSON } from "./paragraph";
|
2024-03-05 04:14:49 +02:00
|
|
|
import { StructuredTagJSON } from "./structured-data-tag";
|
2024-02-09 14:04:42 +02:00
|
|
|
import { TableJSON } from "./table";
|
|
|
|
|
|
|
|
export type FooterJSON = {
|
2024-03-05 04:14:49 +02:00
|
|
|
children: (ParagraphJSON | TableJSON | StructuredTagJSON)[];
|
2024-02-09 14:04:42 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
export type FooterReferenceJSON = {
|
|
|
|
footerType: string;
|
|
|
|
id: string;
|
|
|
|
};
|