Files
2025-08-11 11:51:38 +08:00

10 lines
170 B
TypeScript

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