From fa66ca5821f8d129152cdaa6d97248b3b3796486 Mon Sep 17 00:00:00 2001 From: Jared Klopper Date: Tue, 2 Feb 2016 09:03:41 +1300 Subject: [PATCH] Correct naming --- rest/rest.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rest/rest.d.ts b/rest/rest.d.ts index ac2f2ef0b..49428d534 100644 --- a/rest/rest.d.ts +++ b/rest/rest.d.ts @@ -258,7 +258,7 @@ declare module "rest/interceptor/retry" { declare module "rest/interceptor/template" { import rest = require("rest"); - var hateoas: rest.Interceptor; + var template: rest.Interceptor; module template { interface Config { @@ -267,7 +267,7 @@ declare module "rest/interceptor/template" { } } - export = hateoas; + export = template; } declare module "rest/interceptor/timeout" {