12 lines
232 B
TypeScript
12 lines
232 B
TypeScript
|
import { ParagraphJSON } from "./paragraph";
|
||
|
import { TableJSON } from "./table";
|
||
|
|
||
|
export type HeaderJSON = {
|
||
|
children: (ParagraphJSON | TableJSON)[];
|
||
|
};
|
||
|
|
||
|
export type HeaderReferenceJSON = {
|
||
|
headerType: string;
|
||
|
id: string;
|
||
|
};
|