bankcode-bic
Version:
Convert bank codes from IBAN to BICs, Name of bank. Currently supports only some selected EU countries.
14 lines • 396 B
TypeScript
//#region src/commands/generate.d.ts
type GenerateOptions = {
filterCountries?: string[];
fieldNames?: string[];
keyNames?: string[];
format?: 'json' | 'js' | 'ts';
clearCache?: boolean;
noCache?: boolean;
ttlMs?: number;
debug?: boolean;
};
declare function GenerateCommand(outputDirPath: string, options: GenerateOptions): Promise<void>;
//#endregion
export { GenerateCommand };