fix
This commit is contained in:
parent
c053340e5e
commit
a1715aa117
@ -1,11 +1,9 @@
|
|||||||
import { CrudHandler } from './CrudHandler';
|
import { CrudHandler } from './CrudHandler';
|
||||||
|
|
||||||
export class KnexCrudHandler implements CrudHandler {
|
export class KnexCrudHandler implements CrudHandler {
|
||||||
private _table: string;
|
protected table: string;
|
||||||
private _columns: Array<string>;
|
protected columns: Array<string>;
|
||||||
private _options: Record<string, unknown>;
|
protected options: Record<string, unknown>;
|
||||||
|
|
||||||
public get table (): string { return this._table; }
|
|
||||||
|
|
||||||
public constructor (
|
public constructor (
|
||||||
table: string,
|
table: string,
|
||||||
|
Reference in New Issue
Block a user