mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00: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;
|