From ffa6d1193b1b74b498baa77337ce775db6465015 Mon Sep 17 00:00:00 2001 From: Anton Strogonoff Date: Wed, 1 Dec 2021 21:24:01 +0100 Subject: [PATCH] cleanup: get rid of unused ProgressCallback --- src/types.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/types.ts b/src/types.ts index 5093c06..b0d42b9 100644 --- a/src/types.ts +++ b/src/types.ts @@ -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 }