Add properties to Request in rest library.

This commit is contained in:
Barin Britva
2016-10-28 14:55:44 +03:00
parent 9a792f184c
commit 3170f92ca2

3
rest/rest.d.ts vendored
View File

@@ -26,6 +26,9 @@ declare module "rest" {
params?: any;
headers?: any;
entity?: any;
canceled?: boolean;
cancel?: () => void;
originator?: () => Client;
}
export interface Status {