UNPKG

monzo-ts

Version:
13 lines (12 loc) 254 B
export declare 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; }