UNPKG

vladdress

Version:

Lightweight Street Address Parser Written in TypeScript

7 lines (6 loc) 253 B
interface ParsePlaceNameResult { placeName: string | undefined; placeString: string | undefined; } export declare const parsePlaceName: (placeString: string | undefined, stateAbbreviation: string | undefined) => ParsePlaceNameResult; export {};