From 54d3f5068568fb304e38492864c431e67d522c23 Mon Sep 17 00:00:00 2001 From: ryan-codingintrigue Date: Tue, 24 Mar 2015 15:47:47 +0000 Subject: [PATCH] Removed unnecessary reference to typescriptServices --- whatwg-fetch/whatwg-fetch.d.ts | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/whatwg-fetch/whatwg-fetch.d.ts b/whatwg-fetch/whatwg-fetch.d.ts index 18340110a..d847463bd 100644 --- a/whatwg-fetch/whatwg-fetch.d.ts +++ b/whatwg-fetch/whatwg-fetch.d.ts @@ -3,7 +3,6 @@ // Definitions by: Ryan Graham // Definitions: https://github.com/borisyankov/DefinitelyTyped -/// /// declare class Request { @@ -38,17 +37,13 @@ declare enum RequestMode { "same-origin", "no-cors", "cors" } declare enum RequestCredentials { "omit", "same-origin", "include" } declare enum RequestCache { "default", "no-store", "reload", "no-cache", "force-cache", "only-if-cached" } -declare class Headers implements TypeScript.Iterator { +declare class Headers { append(name: string, value: string): void; delete(name: string):void; get(name: string): string; getAll(name: string): Array; has(name: string): boolean; set(name: string, value: string): void; - - moveNext(): boolean; - - current(): string; } declare class Body {