UNPKG

@types/phone-formatter

Version:
9 lines (7 loc) 257 B
declare module "phone-formatter" { export interface FormatOptions { normalize: boolean; } export function normalize(digits: string): string; export function format(digits: string, format: string, options?: FormatOptions): string; }