Type Alias: SubmitError
type SubmitError = {
description?: string;
stage: "simulate" | "submit";
status: SubmitterErrorStatus;
};Defined in: packages/submitter/lib/handlers/submit/types.ts:75
Output type of submit calls that failed for other reasons.
Properties
description?
optional description: string;Defined in: packages/submitter/lib/handlers/submit/types.ts:82
Description of the problem.
stage
stage: "simulate" | "submit";Defined in: packages/submitter/lib/handlers/submit/types.ts:79
Whether the error occurred at the simulation stage or at the submit stage.
status
status: SubmitterErrorStatus;Defined in: packages/submitter/lib/handlers/submit/types.ts:76