@sheerid/jslib-nightly
Version:
SheerID JavaScript Library
11 lines (10 loc) • 363 B
TypeScript
import { default as React } from 'react';
type AllowedDocumentType = "ID_CARD" | "SCHEDULE";
export declare const STUDENT_DOC_TYPES: AllowedDocumentType[];
interface Props {
type: AllowedDocumentType;
onFileDrop: (files: File[], type?: string) => void;
style?: "large" | "small";
}
export declare const DocumentTypeUpload: React.FC<Props>;
export {};