The API reference is a Work in Progress and will be continuously improved and extended. We'd love to hear your feedback in our documentation repository.
Home > @edtr-io/internal__plugin-state > StateExecutor
StateExecutor type
Describes an asynchronous state update
Signature:export declare type StateExecutor<T> = (
resolve: (value: T) => void,
reject: (value: T) => void,
next: (value: T) => void
) => void