normalizePhone.d.ts 170 B

123456789
  1. declare function normalizePhone(
  2. phone: string,
  3. options: {
  4. countryCode: number;
  5. trunkPrefix?: boolean;
  6. }
  7. ): string;
  8. export = normalizePhone;