Files
Speedtest-Tracker/conf/site/node_modules/react-bootstrap/FormCheckInput.d.ts
Henry Whitaker 3a99dc5495 Updated to v1.3.3
2020-05-05 09:34:02 +01:00

17 lines
401 B
TypeScript

import { BsPrefixRefForwardingComponent } from './helpers';
export interface FormCheckInputProps {
id?: string;
type?: 'checkbox' | 'radio';
isStatic?: boolean;
isValid?: boolean;
isInvalid?: boolean;
}
declare interface FormCheckInput
extends BsPrefixRefForwardingComponent<'input', FormCheckInputProps> {}
declare const FormCheckInput: FormCheckInput;
export default FormCheckInput;