You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

FormCheckInput.d.ts 401 B

3 years ago
12345678910111213141516
  1. import { BsPrefixRefForwardingComponent } from './helpers';
  2. export interface FormCheckInputProps {
  3. id?: string;
  4. type?: 'checkbox' | 'radio';
  5. isStatic?: boolean;
  6. isValid?: boolean;
  7. isInvalid?: boolean;
  8. }
  9. declare interface FormCheckInput
  10. extends BsPrefixRefForwardingComponent<'input', FormCheckInputProps> {}
  11. declare const FormCheckInput: FormCheckInput;
  12. export default FormCheckInput;