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