mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-25 06:49:15 +01:00
14 lines
512 B
TypeScript
14 lines
512 B
TypeScript
import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
|
|
declare type FormCheckInputType = 'checkbox' | 'radio';
|
|
export interface FormCheckInputProps extends BsPrefixProps {
|
|
id?: string;
|
|
bsCustomPrefix?: string;
|
|
type?: FormCheckInputType;
|
|
isStatic?: boolean;
|
|
isValid?: boolean;
|
|
isInvalid?: boolean;
|
|
}
|
|
declare type FormCheckInput = BsPrefixRefForwardingComponent<'input', FormCheckInputProps>;
|
|
declare const FormCheckInput: FormCheckInput;
|
|
export default FormCheckInput;
|