mirror of
https://github.com/dbgate/dbgate
synced 2024-11-07 20:26:23 +00:00
14 lines
209 B
TypeScript
14 lines
209 B
TypeScript
export interface RangeDefinition {
|
|
offset: number;
|
|
limit: number;
|
|
}
|
|
|
|
export interface QueryResultColumn {
|
|
name: string;
|
|
}
|
|
|
|
export interface QueryResult {
|
|
rows: any[];
|
|
columns: QueryResultColumn[];
|
|
}
|