@synotech/utils
Version:
a collection of utilities for internal use
7 lines (6 loc) • 359 B
TypeScript
/**
* @module bankAccountType
* @description A list of bankAccountType
*/
export declare const bankAccountType: readonly ["Cheque account", "Transactional account", "Savings account", "Fixed / Deposit account", "Business account", "Resident and Non-Resident account", "Other"];
export declare type BankAccountType = (typeof bankAccountType)[number];