UNPKG

e118-iin-list

Version:

List of issuer identifier numbers for the international telecommunication charge card (ITU-T E.118)

10 lines (9 loc) 312 B
export type Issuer = { iin: number; issuerIdentifierNumber: string; countryCode: number; countryName: string; companyName: string; companyURLs?: readonly string[]; }; export type IssuerList = Readonly<Record<string, readonly [number, string, number, string, string, readonly string[]]>>;