From cff0e30bf85214c2b93da930ea94ab7524ffbf22 Mon Sep 17 00:00:00 2001 From: Alex Dima Date: Wed, 8 Aug 2018 09:52:58 +0200 Subject: [PATCH] Remove extraneuous declare --- src/vs/base/common/winjs.base.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/base/common/winjs.base.d.ts b/src/vs/base/common/winjs.base.d.ts index 3dd01d954f7..c568d4d7b05 100644 --- a/src/vs/base/common/winjs.base.d.ts +++ b/src/vs/base/common/winjs.base.d.ts @@ -6,7 +6,7 @@ export type ErrorCallback = (error: any) => void; -export declare class Promise { +export class Promise { constructor( executor: ( resolve: (value: T | PromiseLike) => void,