aboutsummaryrefslogtreecommitdiff
path: root/src/http.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-08-23 12:50:36 +0200
committerFlorian Dold <florian.dold@gmail.com>2019-08-23 12:50:36 +0200
commit98c15905ea687c873ec54cfba2f68820f01c65f1 (patch)
treee927b8b454343353b46cb118ddde2f1b9f4c2c9e /src/http.ts
parent0032ff9f3680782d4d8f287e58627c6ec97fca27 (diff)
downloadwallet-core-98c15905ea687c873ec54cfba2f68820f01c65f1.tar.xz
we don't need postForm in the wallet httplib
Diffstat (limited to 'src/http.ts')
-rw-r--r--src/http.ts2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/http.ts b/src/http.ts
index 6bdd04e24..f450d8479 100644
--- a/src/http.ts
+++ b/src/http.ts
@@ -35,8 +35,6 @@ export interface HttpRequestLibrary {
get(url: string): Promise<HttpResponse>;
postJson(url: string, body: any): Promise<HttpResponse>;
-
- postForm(url: string, form: any): Promise<HttpResponse>;
}