fix(web-server): add path to response (#3184)

This commit is contained in:
Min Yin 2019-09-29 13:24:17 +02:00 committed by Daniel Sogl
parent f5d94d824d
commit acec6cfb18

View File

@ -4,7 +4,8 @@ import { Observable } from 'rxjs';
export interface Response { export interface Response {
status: number; status: number;
body: string; body?: string;
path?: string;
headers: { [key: string]: string}; headers: { [key: string]: string};
} }