ff-webpage/types/collection/event.ts

5 lines
212 B
TypeScript

import type BaseCollection from "./baseCollection";
export default interface Event extends BaseCollection {
content: Array<{ type: string; children: Array<{ type: string; text: string }>; level?: number }>;
}