Skip to content

Commit

Permalink
accept any props on connection interface
Browse files Browse the repository at this point in the history
  • Loading branch information
mtxr committed Jun 20, 2020
1 parent aad63ca commit aef15a4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions packages/types/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ This package is part of [vscode-sqltools](https://vscode-sqltools.mteixeira.dev?

# Changelog

### v0.1.5

- Allow IConnection to have any properties.

### v0.1.4

- Add boolean option `highlightQuery` to extension configuration so query highlight can be disabled/enabled.
Expand Down
1 change: 1 addition & 0 deletions packages/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,7 @@ export interface IConnection<DriverOptions = any> {
* @memberof IConnection
*/
isActive: boolean;
[id: string]: any;
}

export interface IQueryOptions {
Expand Down
2 changes: 1 addition & 1 deletion packages/types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sqltools/types",
"version": "0.1.4",
"version": "0.1.5",
"description": "SQLTools interfaces and types",
"types": "index.d.ts",
"main": "index.js",
Expand Down

0 comments on commit aef15a4

Please sign in to comment.