UNPKG

412 BTypeScriptView Raw
1declare type Address = [string, string, string, string];
2export declare type NormalizedAddress = [string, string, string];
3export declare const generateAddressListFromText: (rawData: string) => Address[];
4export declare const extractTargetAddress: (postCodeBack: string, addressList: Address[]) => Address[];
5export declare const normalizeAddressList: (addressList: Address[]) => NormalizedAddress[];
6export {};