Interface IEditorOption<K, V>

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

Properties§

§defaultValue: V
§readonly id: K
§readonly name: string

Methods§

§

applyUpdate(value: V, update: V): ApplyUpdateResult<V>

Might modify value.