@stacksjs/ts-validation
Version:
A simple TypeScript starter kit using Bun.
8 lines • 307 B
TypeScript
export declare function isVAT(str: string, countryCode: string): boolean;
export declare const vatMatchers: ({
/**
* European Union VAT identification numbers
*/
AT: (str: string)) => boolean;
declare type VatMatcher = (str: string) => boolean
declare type VatMatchers = Record<string, VatMatcher>