UNPKG

@ngneat/falso

Version:

All the Fake Data for All Your Real Needs

37 lines (36 loc) 767 B
import { SwiftOptions } from './swift'; /** * Generate a random swift bic code. * * @category finance * * @example * * randBic() * * @example * * randBic({ bankCode: 'DEUT' }) // bank code of Deutsche Bank * * @example * * randBic({ countryCode: 'DE' }) // country code with ISO country code * * @example * * randBic({ locationCode: 'MM' }) // location code for Milan MM for Frankfurt FF and etc * * @example * * randBic({ branchCode: '250' }) // bank branch code * * @example * * randBic({ fillBranchCode: true }) // bank branch code filled with XXX * * @example * * randBic({ length: 10 }) * */ export declare function randBic<Options extends SwiftOptions = never>(options?: Options): import("./core/core").Return<string, Options>;