bankcode-bic
Version:
Convert bank codes from IBAN to BICs, Name of bank. Currently supports only some selected EU countries.
9 lines (8 loc) • 300 B
TypeScript
//#region src/libs/cache.d.ts
interface CacheType {
get: (key: string, transformer?: (value: any) => any) => Promise<any | null>;
set: (key: string, value: any, ttlMs: number, transformer?: (value: any) => any) => Promise<void>;
clear: () => Promise<void>;
}
//#endregion
export { CacheType };