@emcsistemas/native-ui
Version:
Biblioteca de componentes react native
10 lines • 680 B
TypeScript
export type INPUT_MASK_TYPES = 'numbers' | 'cep' | 'telephone' | 'currency' | 'cpf' | 'cnpj' | 'cpfcnpj' | 'time';
export declare function inputMaskCEP(value: string): string;
export declare function inputMaskPhone(value: string): string;
export declare function inputMaskCurrency(value: string, putSymbol: boolean): string;
export declare function inputMaskCPF(value: string): string;
export declare function inputMaskCNPJ(value: string): string;
export declare function inputMaskCPFCNPJ(value: string): string;
export declare function inputMaskNumbers(value: string): string;
export declare function inputMaskTime(value: string): string;
//# sourceMappingURL=util.masks.d.ts.map