Skip to content
This repository was archived by the owner on Dec 1, 2023. It is now read-only.

Added response type and timeout to HttpOptions typescript interface #716

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions types/vue_resource.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ export interface HttpOptions {
method?: string;
body?: any;
params?: any;
timeout?: number;
responseType?: string;
headers?: any;
before?(request: any): any;
progress?(event: any): any;
Expand Down