From 3170f92ca258ac10f307d4e174bb0b2b546a5459 Mon Sep 17 00:00:00 2001 From: Barin Britva Date: Fri, 28 Oct 2016 14:55:44 +0300 Subject: [PATCH] Add properties to Request in rest library. --- rest/rest.d.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/rest/rest.d.ts b/rest/rest.d.ts index e444726742..de05277d0a 100644 --- a/rest/rest.d.ts +++ b/rest/rest.d.ts @@ -26,6 +26,9 @@ declare module "rest" { params?: any; headers?: any; entity?: any; + canceled?: boolean; + cancel?: () => void; + originator?: () => Client; } export interface Status {