UseCancelablePromisePendingState
Home > @gooddata/sdk-ui > UseCancelablePromisePendingState
UseCancelablePromisePendingState type
Indicates pending state for useCancelablePromise() hook
Signature:
export type UseCancelablePromisePendingState = {
    result: undefined;
    error: undefined;
    status: "pending";
};