10 lines
170 B
TypeScript
10 lines
170 B
TypeScript
declare function normalizePhone(
|
|
phone: string,
|
|
options: {
|
|
countryCode: number;
|
|
trunkPrefix?: boolean;
|
|
}
|
|
): string;
|
|
|
|
export = normalizePhone;
|