aomao_plugin-mind
Version:
16 lines (15 loc) • 518 B
TypeScript
import { ShapeData } from '../types';
import { Card, CardType, CardValue, NodeInterface } from 'aomao_engine';
export interface MindValue extends CardValue {
data: Array<ShapeData>;
}
export default class MindCard extends Card<MindValue> {
private graphEditor?;
static get cardName(): string;
static get cardType(): CardType;
contenteditable: string[];
onChange(_: 'local' | 'remote', node: NodeInterface): void;
render(): void;
didRender(): void;
destroy(): void;
}