@sroussey/parse-address
Version:
International street address parser for 220 jurisdictions (US, CA + 218 countries and territories), with SEC EDGAR country-code resolution
10 lines (9 loc) • 438 B
TypeScript
import type { EuCountryConfig } from "./types.js";
/**
* Registry of the supported European country configurations, keyed by ISO
* alpha-2 (lowercase). Adding a country is a one-line addition here plus its
* `config.ts`; the `AddressParser` facade builds an `AddressParserEU` from
* whichever config this map returns.
*/
export declare const euConfigs: Record<string, EuCountryConfig>;
export declare const euCountryCodes: string[];