10 lines
170 B

8 months ago
declare function normalizePhone(
phone: string,
options: {
countryCode: number;
trunkPrefix?: boolean;
}
): string;
export = normalizePhone;