Interface CustomDocumentContentChangeEvent<T>

Event triggered by extensions to signal to Theia that the content of a CustomDocument has changed.

interface CustomDocumentContentChangeEvent<T> {
    document: T;
}

Type Parameters

Properties

Properties

document: T

The document that the change is for.