UNPKG

@nish1896/rhf-mui-components

Version:

A suite of 20+ reusable Material UI components for React Hook Form to minimize your time and effort in creating and styling forms

8 lines (7 loc) 329 B
export type TrueOrFalse = true | false; export type StringArr = string[]; export type StringOrNumber = string | number; export type StrNumArray = StringOrNumber[]; export type KeyValueOption = Record<string, any>; export type StrNumObjOption = StringOrNumber | KeyValueOption; export type StrObjOption = string | KeyValueOption;