UNPKG

shineout

Version:

Shein 前端组件库

12 lines (11 loc) 354 B
import { PureComponent } from 'react'; import { FileInputProps } from './Props'; declare class FileInput extends PureComponent<FileInputProps> { locked: boolean; input: HTMLInputElement; constructor(props: FileInputProps); bindElement(el: HTMLInputElement): void; click(): void; render(): JSX.Element; } export default FileInput;