Skip to content

Commit

Permalink
fix(web-server): add path to response (#3184)
Browse files Browse the repository at this point in the history
  • Loading branch information
myin142 authored and danielsogl committed Sep 29, 2019
1 parent f5d94d8 commit acec6cf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/@ionic-native/plugins/web-server/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ import { Observable } from 'rxjs';

export interface Response {
status: number;
body: string;
body?: string;
path?: string;
headers: { [key: string]: string};
}

Expand Down

0 comments on commit acec6cf

Please sign in to comment.