cleanup: get rid of unused ProgressCallback

This commit is contained in:
Anton Strogonoff 2021-12-01 21:24:01 +01:00
parent 669d58852d
commit ffa6d1193b

View file

@ -1,4 +1,4 @@
import { HttpClient, ProgressCallback } from 'isomorphic-git/http/node';
import type { HttpClient } from 'isomorphic-git/http/node';
export interface BasicAuth {
@ -18,6 +18,4 @@ export interface HTTPRequest {
/** Auth data for basic HTTP auth. */
auth?: BasicAuth
onProgress?: ProgressCallback
}