mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 04:26:01 +00:00
17 lines
289 B
TypeScript
17 lines
289 B
TypeScript
export interface RangeDefinition {
|
|
offset: number;
|
|
limit: number;
|
|
}
|
|
|
|
export interface QueryResultColumn {
|
|
columnName: string;
|
|
notNull: boolean;
|
|
autoIncrement?: boolean;
|
|
}
|
|
|
|
export interface QueryResult {
|
|
rows?: any[];
|
|
columns?: QueryResultColumn[];
|
|
rowsAffected?: number;
|
|
}
|