From 3f4eb92f38b82c42388d573afa996589d811f126 Mon Sep 17 00:00:00 2001 From: bilou84 Date: Fri, 24 Apr 2015 12:48:44 +0200 Subject: [PATCH] convert-source-map: Remove all implicit any --- convert-source-map/convert-source-map.d.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/convert-source-map/convert-source-map.d.ts b/convert-source-map/convert-source-map.d.ts index 6034d13f7..34a0b2c8e 100644 --- a/convert-source-map/convert-source-map.d.ts +++ b/convert-source-map/convert-source-map.d.ts @@ -6,22 +6,22 @@ declare module "convert-source-map" { export interface SourceMapConverter { toObject(): any; - toJSON(space?): string; + toJSON(space?: any): string; toBase64(): string; toComment(): string; - addProperty(key, value): SourceMapConverter; - setProperty(key, value): SourceMapConverter; + addProperty(key: string, value: any): SourceMapConverter; + setProperty(key: string, value: any): SourceMapConverter; - getProperty(key): any; + getProperty(key: string): any; } - export function removeComments(src): string; + export function removeComments(src: string): string; export var commentRegex: RegExp; - export function fromObject(obj): SourceMapConverter; + export function fromObject(obj: any): SourceMapConverter; export function fromJSON(json: string): SourceMapConverter; export function fromBase64(base64: string): SourceMapConverter; export function fromComment(comment: string): SourceMapConverter; export function fromSource(source: string): SourceMapConverter; -} \ No newline at end of file +}