lint error fixed

This commit is contained in:
Vladimir Enchev
2015-07-17 10:25:06 +03:00
parent 1ea4a0af0d
commit fc697e5ec2

1
fetch/fetch.d.ts vendored
View File

@ -85,5 +85,6 @@ declare module "fetch" {
type BodyInit = Blob|FormData|string;
type RequestInfo = Request|string;
/* tslint:disable */
function fetch(url: string, init?: RequestInit): Promise<Response>;
}