UNPKG

modaq

Version:

Quiz Bowl Reader using TypeScript, React, and MobX

10 lines (9 loc) 300 B
import React from "react"; export declare const FilePicker: React.FunctionComponent<IFilePickerProps>; export interface IFilePickerProps { accept?: string; buttonText: string; label?: string; required?: boolean; onChange(event: React.SyntheticEvent, file: File): void; }