UNPKG

195 BTypeScriptView Raw
1export declare type JSONCountryFormat = {
2 name: "country";
3 variant: "iso3166-2" | "iso3166-3";
4};
5export declare function inferCountry(value: string): JSONCountryFormat | undefined;