Type Alias ApiConfig
type ApiConfig = {
autoUpload?: boolean;
file: File;
getCancelURI: (uploadID: string) => string;
getProcessURI: (uploadID: string) => string;
initializeURI: string;
onChange: ChangeCallback;
onError: ErrorCallback;
outputType: OutputType | null;
}
autoUpload?: boolean;
file: File;
getCancelURI: (uploadID: string) => string;
getProcessURI: (uploadID: string) => string;
initializeURI: string;
onChange: ChangeCallback;
onError: ErrorCallback;
outputType: OutputType | null;
}