Skip to content

Commit 757e2c2

Browse files
committed
Removed boilerplate type definition
1 parent cf21e77 commit 757e2c2

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

src/index.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ interface QueryResult {
4343
/**
4444
* Query metadata, avaliable only for select query results
4545
*/
46-
metadata?: ResultsetMetadata;
46+
metadata?: ColumnMetadata[];
4747
}
4848

4949
/**
@@ -60,11 +60,6 @@ declare type ColumnMetadata = {
6060
columnIndex: number;
6161
};
6262

63-
/**
64-
* Collection of columns that represents the resultset of a query
65-
*/
66-
declare type ResultsetMetadata = ColumnMetadata[];
67-
6863
/**
6964
* Allows the execution of bulk of sql commands
7065
* inside a transaction

0 commit comments

Comments
 (0)