Skip to content

Commit

Permalink
revert copy-paste mistake in types
Browse files Browse the repository at this point in the history
  • Loading branch information
kohenkatz committed Oct 8, 2020
1 parent c4e9a1e commit f0ce8a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/src/lib/upload-helper.d.ts
Expand Up @@ -18,7 +18,7 @@ declare class UploadHelper {
updateUpload(url: string, headers: object, fileRecord: FileRecord, uploadData: any, configureFn?: ConfigureFn): Promise<unknown>;
doTusUpload(tus: any, url: string, fileRecord: FileRecord, headers: object, progressCallback: ProgressFn, tusOptionsFn?: TusOptionsFn, uploadWithCredentials?: boolean): Promise<unknown>;
tusUpload(tus: any, url: string, headers: object, fileRecords: FileRecord[], progressFn?: (progress: number) => void, tusOptionsFn?: TusOptionsFn, uploadWithCredentials?: boolean): Promise<unknown[]>;
tusDeleteUpload(tus: any, url: string, headers: object, fileRecord: FileRecord, uploadWithCredentials?: boolean): Promise<unknown>;
tusDeleteUpload(tus: any, url: string, headers: object, fileRecord: FileRecord): Promise<unknown>;
}
declare const _default: UploadHelper;
export default _default;

0 comments on commit f0ce8a6

Please sign in to comment.