Interface IPositionModel

Code editor cursor position model.

interface IPositionModel {
    addEditorProvider: ((provider) => void);
    update(): void;
}

Properties

Methods

Properties

addEditorProvider: ((provider) => void)

Add a editor provider.

A provider will receive the currently active widget and must return the associated editor if it can or null otherwise.

Type declaration

Methods