@devlander/styled-components-theme
Version:
Devlander's team utilizes this package during the development of their React Native projects. Its primary purpose is to facilitate code reuse by sharing types across multiple projects that uses the styled-components library.
42 lines (41 loc) • 1.07 kB
TypeScript
export declare enum AutoCompleteTypeEnum {
'birthdate-day' = 0,
'birthdate-full' = 1,
'birthdate-month' = 2,
'birthdate-year' = 3,
'cc-csc' = 4,
'cc-exp' = 5,
'cc-exp-day' = 6,
'cc-exp-month' = 7,
'cc-exp-year' = 8,
'cc-number' = 9,
'email' = 10,
'gender' = 11,
'name' = 12,
'name-family' = 13,
'name-given' = 14,
'name-middle' = 15,
'name-middle-initial' = 16,
'name-prefix' = 17,
'name-suffix' = 18,
'password' = 19,
'password-new' = 20,
'postal-address' = 21,
'postal-address-country' = 22,
'postal-address-extended' = 23,
'postal-address-extended-postal-code' = 24,
'postal-address-locality' = 25,
'postal-address-region' = 26,
'postal-code' = 27,
'street-address' = 28,
'sms-otp' = 29,
'tel' = 30,
'tel-country-code' = 31,
'tel-national' = 32,
'tel-device' = 33,
'username' = 34,
'username-new' = 35,
'off' = 36,
undefined = 37
}
export type AutoCompleteType = `${AutoCompleteTypeEnum}` | AutoCompleteTypeEnum;