UNPKG

vladdress

Version:

Lightweight Street Address Parser Written in TypeScript

8 lines (7 loc) 275 B
interface ParsePOBoxResult { line1: string | undefined; streetString: string | undefined; } export declare const parsePOBox: (streetString: string | undefined) => ParsePOBoxResult; export declare const matchesPOBox: (input: string | undefined) => boolean; export {};