ff-webpage/types/collection/operation.ts

6 lines
216 B
TypeScript
Raw Normal View History

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