Skip to content

Commit

Permalink
chore: build dist for release
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanlescure committed Feb 10, 2022
1 parent 186f517 commit acf8760
Show file tree
Hide file tree
Showing 5 changed files with 752 additions and 3 deletions.
28 changes: 28 additions & 0 deletions dist/costa-rica-iban.d.ts
@@ -0,0 +1,28 @@
export interface BankObject {
code: string;
entity: string;
category: string;
participation: string;
representative: string;
}
export declare const NOT_STRING_ERROR: Error;
export declare const INVALID_IBAN_ERROR: Error;
export declare const getCountryPrefixFromIBAN: (iban: string) => string;
export declare const verifyIBANCountryPrefix: (iban: string) => boolean;
export declare const verifyIBANLength: (iban: string) => boolean;
export declare const verifyIBANFormat: (iban: string) => boolean;
export declare const getBankCodeFromIBAN: (iban: string) => string;
export declare const getBankObjectFromIBAN: (iban: string) => BankObject;
export declare const getBankNameFromIBAN: (iban: string, returnRepresentative?: boolean) => string;
export declare const getBankCategoryFromIBAN: (iban: string, returnRepresentative?: boolean) => string;
declare class CostaRicaIBAN {
iban: string;
constructor(iban: string);
getCountryPrefix(): string;
getBankCode(): string;
getBankObject(): BankObject;
getBankName(): string;
getBankCategory(): string;
getVersion: () => string;
}
export default CostaRicaIBAN;

0 comments on commit acf8760

Please sign in to comment.