sql tree - before refactor

This commit is contained in:
Jan Prochazka
2020-03-05 11:42:16 +01:00
parent 0507e84457
commit bf607fcb06
12 changed files with 136 additions and 18 deletions

View File

@@ -1,5 +1,9 @@
import {Select} from '@dbgate/sqltree'
import GridConfig from "./GridConfig";
export default abstract class GridDisplay {
abstract getPageQuery(offse: number, count: number): string;
constructor(
public config: GridConfig,
protected setConfig: (configh: GridConfig) => void
) {}
abstract getPageQuery(offset: number, count: number): string;
}