From b158ec4019c3945db9096bd0a35f54a79d6f0309 Mon Sep 17 00:00:00 2001 From: devTeaa Date: Wed, 26 Oct 2022 12:23:35 +0700 Subject: [PATCH] Fix GET overload with config not typed --- types/vue_resource.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/vue_resource.ts b/types/vue_resource.ts index 2adca137..59b91d8e 100644 --- a/types/vue_resource.ts +++ b/types/vue_resource.ts @@ -38,8 +38,8 @@ export interface HttpOptions { } export interface $http { - (url: string, data?: any, options?: HttpOptions): PromiseLike; (url: string, options?: HttpOptions): PromiseLike; + (url: string, data?: any, options?: HttpOptions): PromiseLike; } export interface HttpInterceptor {