create-updater.d.ts 174 B

1
  1. export declare function createUpdater<T, U>(host: T, getter: (x: T) => U, setter: (x: T, v: U) => void, shouldUpdate: (reduced: U, value: U) => boolean): (value: U) => void;