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