@temboplus/frontend-core 1.0.1-beta.0 → 1.0.1-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -6,7 +6,12 @@ export declare const BankHelpers: {
|
|
|
6
6
|
validateSwiftCode: typeof validateSwiftCode;
|
|
7
7
|
validateAllBankDetails: typeof validateAllBankDetails;
|
|
8
8
|
getCountryFromSwiftCode: typeof getCountryFromSwiftCode;
|
|
9
|
+
validateAccountName: typeof validateAccountName;
|
|
9
10
|
};
|
|
11
|
+
/**
|
|
12
|
+
* Validates a bank account name.
|
|
13
|
+
*/
|
|
14
|
+
declare function validateAccountName(accountName: string): boolean;
|
|
10
15
|
/**
|
|
11
16
|
* Validates a bank account number format. When countryCode is omitted, every
|
|
12
17
|
* supported country validator is checked.
|