UNPKG

react-web-native-sketch

Version:

[TODO: We need an overview of how this can be used via npm vs as a local package]

6 lines (5 loc) 442 B
import { TEXT_INPUT_TYPES } from '../../utils/enums'; export declare const getKeyboardType: (inputType?: TEXT_INPUT_TYPES | undefined) => string; export declare const getError: (textInputType: TEXT_INPUT_TYPES, rawValue: string) => string | undefined; export declare const defaultDbToRaw: (textInputType: TEXT_INPUT_TYPES, dbValue: any) => string; export declare const defaultRawToDb: (textInputType: TEXT_INPUT_TYPES, value: string) => any;