From 8b40d20eab51754a9f51e171e661c522087e8a7b Mon Sep 17 00:00:00 2001 From: Kevin Cunnane Date: Fri, 19 Apr 2019 16:41:23 -0700 Subject: [PATCH] Typings reference failing in external extension (#5129) This fixes an issue where if you copy azdata.proposed.d.ts to an extension project, it would fail to compile using default tsconfig.json settings due to missing return type --- src/sql/azdata.proposed.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sql/azdata.proposed.d.ts b/src/sql/azdata.proposed.d.ts index 21205b7129..4e3995b2a9 100644 --- a/src/sql/azdata.proposed.d.ts +++ b/src/sql/azdata.proposed.d.ts @@ -3705,7 +3705,7 @@ declare module 'azdata' { | 'executionPlan'; export interface QueryEventListener { - onQueryEvent(type: QueryEvent, document: queryeditor.QueryDocument, args: any); + onQueryEvent(type: QueryEvent, document: queryeditor.QueryDocument, args: any): void; } // new extensibility interfaces