Skip to content

Type Alias: SubmitError

type SubmitError = {
  description?: string;
  stage: "simulate" | "submit";
  status: SubmitterErrorStatus;
};

Defined in: apps/submitter/lib/handlers/submit/types.ts:59

Output type of submit calls that failed for other reasons.

Properties

description?

optional description: string;

Defined in: apps/submitter/lib/handlers/submit/types.ts:66

Description of the problem.


stage

stage: "simulate" | "submit";

Defined in: apps/submitter/lib/handlers/submit/types.ts:63

Whether the error occurred at the simulation stage or at the submit stage.


status

status: SubmitterErrorStatus;

Defined in: apps/submitter/lib/handlers/submit/types.ts:60