Type Alias: CreateAccountError
type CreateAccountError = Prettify<CreateAccountInput & {
description: string;
status: Exclude<CreateAccountStatus,
| typeof Success
| typeof AlreadyCreated>;
}>;Defined in: apps/submitter/lib/handlers/createAccount/types.ts:59
Failed account creation.