From e282a887c3e8c5fc6d159da9881f13adb2f527b4 Mon Sep 17 00:00:00 2001 From: Nikita Dezzpil Orlov Date: Tue, 5 Oct 2021 15:48:48 +0300 Subject: [PATCH] =?UTF-8?q?fix:=20=D1=82=D1=80=D0=B0=D0=BD=D1=81=D1=84?= =?UTF-8?q?=D0=BE=D1=80=D0=BC=D0=B5=D1=80=20=D0=B4=D0=BE=D1=81=D1=82=D1=83?= =?UTF-8?q?=D0=BF=D0=B5=D0=BD=20=D0=B4=D0=BB=D1=8F=20=D0=B4=D0=BE=D1=87?= =?UTF-8?q?=D0=B5=D1=80=D0=BD=D0=B8=D1=85=20=D0=BA=D0=BB=D0=B0=D1=81=D1=81?= =?UTF-8?q?=D0=BE=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- orm.d.ts | 2 +- src/app/repo.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/orm.d.ts b/orm.d.ts index 8fea81c..15936a8 100644 --- a/orm.d.ts +++ b/orm.d.ts @@ -66,7 +66,7 @@ export declare abstract class Repo> { protected _entity: T; protected _limit: number; protected _offset: number; - private _transformer; + protected _transformer: (obj: any) => any; /** * Возвращает объект соотв. сущности, например new App() */ diff --git a/src/app/repo.ts b/src/app/repo.ts index de352e9..66dc115 100644 --- a/src/app/repo.ts +++ b/src/app/repo.ts @@ -15,7 +15,7 @@ export abstract class Repo> { protected _limit = 0 protected _offset = 0 - private _transformer: (obj: any) => any + protected _transformer: (obj: any) => any /** * Возвращает объект соотв. сущности, например new App()