MCPcopy
hub / github.com/heroku/react-refetch / PendingPromiseState

Interface PendingPromiseState

src/index.d.ts:46–52  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

44}
45
46export interface PendingPromiseState<T = {}> extends PromiseStateBase {
47 readonly pending: true;
48 readonly fulfilled: false;
49 readonly rejected: false;
50 readonly value: undefined;
51 readonly reason: undefined;
52}
53
54export interface FulfilledPromiseState<T = {}> extends PromiseStateBase {
55 readonly pending: false;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…