Interface VideoEditorAction
interface VideoEditorAction {
canPerform: (editor: VideoEditor) => boolean;
exec: (editor: VideoEditor) => unknown;
Icon: () => Element;
id: string;
localeKey: string;
}
canPerform: (editor: VideoEditor) => boolean;
exec: (editor: VideoEditor) => unknown;
Icon: () => Element;
id: string;
localeKey: string;
}