UNPKG

sprinque-js-sdk-wip

Version:

UI kit to implement Pay by Invoice with Sprinque

11 lines (10 loc) 493 B
declare const SUPPORTED_COUNTRY_CODES: readonly ["en", "nl"]; declare const SUPPORTED_LANGUAGES: readonly ["en", "nl"]; declare type IsVatIdValidResponse = { isValid: boolean; message: string; }; declare type CountryCodeType = typeof SUPPORTED_COUNTRY_CODES[number]; declare type SupportedLanguageType = typeof SUPPORTED_LANGUAGES[number]; export declare const checkVatId: (vatId: string, countryCode: CountryCodeType, lang?: SupportedLanguageType) => IsVatIdValidResponse; export {};