6 lines
212 B
TypeScript
6 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 }>;
|
||
|
}
|