Type Alias: CreateAccountFailed
type CreateAccountFailed = CreateAccountInput & {
description?: string;
status: Exclude<CreateAccountStatus,
| typeof Success
| typeof AlreadyCreated>;
};Defined in: apps/submitter/lib/handlers/createAccount/types.ts:42
Failed account creation.
Type declaration
description?
optional description: string;Optional description of the problem.
status
status: Exclude<CreateAccountStatus,
| typeof Success
| typeof AlreadyCreated>;