UNPKG

bankcode-bic

Version:

Convert bank codes from IBAN to BICs, Name of bank. Currently supports only some selected EU countries.

18 lines (17 loc) 568 B
import { DownloadCommand } from "./commands/download.js"; import { GenerateCommand } from "./commands/generate.js"; import { showHelp } from "./commands/help.js"; import { LookupCommand } from "./commands/lookup.js"; //#region src/cli.d.ts declare function main(options?: { cmds: { download: typeof DownloadCommand; generate: typeof GenerateCommand; help: typeof showHelp; lookup: typeof LookupCommand; exitApp: (code?: number | string | null | undefined) => never; }; cmdlineArgs: undefined; }): Promise<void>; //#endregion export { main };