forked from Northgate-Systems/RemitX
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenums.ts
More file actions
38 lines (29 loc) · 879 Bytes
/
Copy pathenums.ts
File metadata and controls
38 lines (29 loc) · 879 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/* !!! This is code generated by Prisma. Do not edit directly. !!! */
/* eslint-disable */
// biome-ignore-all lint: generated file
// @ts-nocheck
/*
* This file exports all enum related types from the schema.
*
* 🟢 You can import this file directly.
*/
export const KycStatus = {
pending: 'pending',
verified: 'verified',
rejected: 'rejected'
} as const
export type KycStatus = (typeof KycStatus)[keyof typeof KycStatus]
export const TransactionStatus = {
pending: 'pending',
validating: 'validating',
confirmed: 'confirmed',
failed: 'failed'
} as const
export type TransactionStatus = (typeof TransactionStatus)[keyof typeof TransactionStatus]
export const EscrowStatus = {
locked: 'locked',
released: 'released',
refunded: 'refunded',
expired: 'expired'
} as const
export type EscrowStatus = (typeof EscrowStatus)[keyof typeof EscrowStatus]