We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf21e77 commit 757e2c2Copy full SHA for 757e2c2
1 file changed
src/index.ts
@@ -43,7 +43,7 @@ interface QueryResult {
43
/**
44
* Query metadata, avaliable only for select query results
45
*/
46
- metadata?: ResultsetMetadata;
+ metadata?: ColumnMetadata[];
47
}
48
49
@@ -60,11 +60,6 @@ declare type ColumnMetadata = {
60
columnIndex: number;
61
};
62
63
-/**
64
- * Collection of columns that represents the resultset of a query
65
- */
66
-declare type ResultsetMetadata = ColumnMetadata[];
67
-
68
69
* Allows the execution of bulk of sql commands
70
* inside a transaction
0 commit comments