mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-03 09:35:40 -05:00
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
This commit is contained in:
2
src/sql/azdata.proposed.d.ts
vendored
2
src/sql/azdata.proposed.d.ts
vendored
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user