UNPKG

com.phloxui

Version:

PhloxUI Ng2+ Framework

17 lines (16 loc) 645 B
import { AbstractPipeFormatter } from './AbstractPipeFormatter'; import { TelephoneNo } from '../model/TelephoneNo'; export declare class TelephoneNoFormatter extends AbstractPipeFormatter { static readonly NAME: string; private countryCodePunctuator; private extNoPunctuator; constructor(); private setDefaultValues(); format(data: any): string; parse(data: string): TelephoneNo; parseToOptions(args: any[]): any; getCountryCodePunctuator(): string; setCountryCodePunctuator(countryCodePunctuator: string): void; getExtNoPunctuator(): string; setExtNoPunctuator(extNoPunctuator: string): void; }