ff-webpage/types/collection/operation.ts

5 lines
216 B
TypeScript

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