mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 03:16:01 +00:00
9 lines
121 B
TypeScript
9 lines
121 B
TypeScript
export interface RangeDefinition {
|
|
offset: number;
|
|
limit: number;
|
|
}
|
|
|
|
export interface QueryResult {
|
|
rows: any[];
|
|
}
|