Interface VideoEditorAction

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