-
Notifications
You must be signed in to change notification settings - Fork 249
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* iiandrade-master: Typescript type definition for using with Typescript development.
- Loading branch information
Showing
3 changed files
with
72 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
import * as React from "react"; | ||
import {TextInput, TextInputProps} from "react-native"; | ||
|
||
// Type prop of TextInputMask. | ||
type TextInputMaskTypeProp = "credit-card" | "cpf" | "cnpj" | "zip-code" | "only-numbers" | "money" | "cel-phone" | "datetime" | "custom"; | ||
|
||
// Option prop of TextInputMask. | ||
type TextInputMaskOptionProp = { | ||
// Money type. | ||
precision?: number; | ||
separator?: string; | ||
delimiter?: string; | ||
unit?: string; | ||
suffixUnit?: string; | ||
zeroCents?: boolean; | ||
|
||
// Phone type. | ||
withDDD?: boolean; | ||
dddMask?: string; | ||
|
||
// Datetime type. | ||
format?: string; | ||
|
||
// Credit card type. | ||
obfuscated?: boolean; | ||
}; | ||
|
||
// TextInputMask Props | ||
interface TextInputMaskProps extends TextInputProps { | ||
type: TextInputMaskTypeProp; | ||
options?: TextInputMaskOptionProp; | ||
checkText?: (previous: string, next: string) => boolean; | ||
onChangeText?: (text: string) => void; | ||
} | ||
|
||
// TextInputMask Component | ||
export declare class TextInputMask extends React.Component<TextInputMaskProps> {} | ||
|
||
// MaskService | ||
export declare class MaskService { | ||
static toMask(type: string, value: any, options: TextInputMaskOptionProp): string; | ||
static isValid(type: string, value: any, options: TextInputMaskOptionProp): boolean; | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters