Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

16 wiersze
359 B

  1. import { BsPrefixRefForwardingComponent } from './helpers';
  2. export interface FormFileInputProps {
  3. id?: string;
  4. isValid?: boolean;
  5. isInvalid?: boolean;
  6. lang?: string;
  7. }
  8. declare interface FormFileInput
  9. extends BsPrefixRefForwardingComponent<'input', FormFileInputProps> {}
  10. declare const FormFileInput: FormFileInput;
  11. export default FormFileInput;