UNPKG

monzo-ts

Version:
14 lines (12 loc) 231 B
export enum AccountType { Prepaid = 'uk_prepaid', Debit = 'uk_retail', } export interface Account { id: string; created: Date; description: string; type: AccountType; account_number?: string; sort_code?: string; }