Interface IEditorOption<K, V>

interface IEditorOption<K, V> {
    defaultValue: V;
    id: K;
    name: string;
    applyUpdate(value, update): ApplyUpdateResult<V>;
}

Type Parameters

Properties

Methods

Properties

defaultValue: V
id: K
name: string

Methods