Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

FormFile.d.ts 640 B

há 3 anos
1234567891011121314151617181920212223242526
  1. import * as React from 'react';
  2. import FormFileInput from './FormFileInput';
  3. import FormFileLabel from './FormFileLabel';
  4. import { BsPrefixRefForwardingComponent } from './helpers';
  5. export interface FormFileProps {
  6. bsCustomPrefix?: string;
  7. id?: string;
  8. disabled?: boolean;
  9. label?: React.ReactNode;
  10. custom?: boolean;
  11. isValid?: boolean;
  12. isInvalid?: boolean;
  13. feedback?: React.ReactNode;
  14. lang?: string;
  15. }
  16. declare interface FormFile
  17. extends BsPrefixRefForwardingComponent<'input', FormFileProps> {
  18. Input: typeof FormFileInput;
  19. Label: typeof FormFileLabel;
  20. }
  21. declare const FormFile: FormFile;
  22. export default FormFile;