Interface CustomEditorsMain

interface CustomEditorsMain {
    $onContentChange(resource, viewType): void;
    $onDidEdit(resource, viewType, editId, label): void;
    $registerCustomEditorProvider(viewType, options, supportsMultipleEditorsPerDocument): void;
    $registerTextEditorProvider(viewType, options, capabilities): void;
    $unregisterEditorProvider(viewType): void;
}

Implemented by

Methods