Core API Overview > @adpt/core > StateUpdater StateUpdater type Signature: export declare type StateUpdater<P = AnyProps, S = AnyState> = (prev: S, props: P) => Partial<S> | Promise<Partial<S>>;