mirror of
https://github.com/idanoo/GoScrobble
synced 2025-07-01 21:52:19 +00:00
13 lines
512 B
TypeScript
13 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;
|