QueryProcessingSuccessState
Home > @gooddata/sdk-ui-dashboard > QueryProcessingSuccessState
QueryProcessingSuccessState type
Signature:
export type QueryProcessingSuccessState<TResult> = {
status: "success";
error: undefined;
result: TResult;
};