Interface IEditorContribution
Expand description
interface IEditorContribution {
dispose(): void;
restoreViewState?(state: unknown): void;
saveViewState?(): unknown;
}interface IEditorContribution {
dispose(): void;
restoreViewState?(state: unknown): void;
saveViewState?(): unknown;
}
An editor contribution that gets created every time a new editor gets created and gets disposed when the editor gets disposed.