wallet.ts 217 B

1234567
  1. export type WalletType = 'goldCoin' | 'diamond' | 'bean'
  2. export const walletTypeMap: Record<WalletType, string> = {
  3. goldCoin: 'wallet.type.goldCoin',
  4. diamond: 'wallet.type.diamond',
  5. bean: 'wallet.type.bean',
  6. }