@gdyfe/ssml
Version:
10 lines (9 loc) • 341 B
TypeScript
import { type IDomEditor } from '@wangeditor/editor';
import type { LabelValue } from '../../model';
export default abstract class BaseFn {
protected readonly editor: IDomEditor;
constructor(editor: IDomEditor);
protected getValue(): string;
isDisabled(): boolean;
abstract exec(opt: LabelValue, ...args: any[]): void;
}