mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-24 22:39:26 +01:00
17 lines
401 B
TypeScript
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;
|