Files
Speedtest-Tracker/conf/site/node_modules/react-bootstrap/esm/FormControl.d.ts
2020-07-08 12:08:03 +01:00

24 lines
785 B
TypeScript

import React from 'react';
import Feedback from './Feedback';
import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
declare type FormControlElement = HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement;
export interface FormControlProps extends BsPrefixProps {
bsCustomPrefix?: string;
htmlSize?: number;
size?: 'sm' | 'lg';
plaintext?: boolean;
readOnly?: boolean;
disabled?: boolean;
value?: string | string[] | number;
onChange?: React.ChangeEventHandler<FormControlElement>;
custom?: boolean;
type?: string;
id?: string;
isValid?: boolean;
isInvalid?: boolean;
}
declare const _default: BsPrefixRefForwardingComponent<"input", FormControlProps> & {
Feedback: Feedback;
};
export default _default;