7 lines
187 B
TypeScript
7 lines
187 B
TypeScript
export const BalancesErrorCode = {
|
|
InsufficientBalance: "insufficient_balance",
|
|
} as const;
|
|
|
|
export type BalancesErrorCode =
|
|
(typeof BalancesErrorCode)[keyof typeof BalancesErrorCode];
|