mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-21 07:06:00 +00:00
introduced yarn workspace
This commit is contained in:
13
packages/types/query.d.ts
vendored
Normal file
13
packages/types/query.d.ts
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
export interface RangeDefinition {
|
||||
offset: number;
|
||||
limit: number;
|
||||
}
|
||||
|
||||
export interface QueryResultColumn {
|
||||
name: string;
|
||||
}
|
||||
|
||||
export interface QueryResult {
|
||||
rows: any[];
|
||||
columns: QueryResultColumn[];
|
||||
}
|
||||
Reference in New Issue
Block a user