ff-webpage/types/collection/event.ts

6 lines
212 B
TypeScript
Raw Normal View History

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