mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 10:16:00 +00:00
dynamic loading of next rows
This commit is contained in:
@@ -1,9 +1,14 @@
|
||||
import GridConfig from "./GridConfig";
|
||||
|
||||
export interface DisplayColumn {
|
||||
columnName: string;
|
||||
}
|
||||
|
||||
export default abstract class GridDisplay {
|
||||
constructor(
|
||||
public config: GridConfig,
|
||||
protected setConfig: (configh: GridConfig) => void
|
||||
) {}
|
||||
abstract getPageQuery(offset: number, count: number): string;
|
||||
columns: DisplayColumn[];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user