From a1715aa117f90e57b1ffed4991466418f91c17b3 Mon Sep 17 00:00:00 2001 From: Timo Hocker Date: Thu, 16 Apr 2020 09:46:06 +0200 Subject: [PATCH] fix --- lib/KnexCrudHandler.ts | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/lib/KnexCrudHandler.ts b/lib/KnexCrudHandler.ts index 462f6b4..249b20f 100644 --- a/lib/KnexCrudHandler.ts +++ b/lib/KnexCrudHandler.ts @@ -1,11 +1,9 @@ import { CrudHandler } from './CrudHandler'; export class KnexCrudHandler implements CrudHandler { - private _table: string; - private _columns: Array; - private _options: Record; - - public get table (): string { return this._table; } + protected table: string; + protected columns: Array; + protected options: Record; public constructor ( table: string,