From 18b92fe90b5c330fd8b0298b61167bffecdf5681 Mon Sep 17 00:00:00 2001 From: rkamysz Date: Tue, 25 Jul 2023 08:55:41 +0200 Subject: [PATCH] protected api --- src/api/api.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/api/api.ts b/src/api/api.ts index 8e736c8..7b80ece 100644 --- a/src/api/api.ts +++ b/src/api/api.ts @@ -2,9 +2,9 @@ import { ApiConfig } from './api.types'; export class Api { - private app: WebFramework; + protected app: WebFramework; - constructor(private config: ApiConfig) {} + constructor(protected config: ApiConfig) {} public async start() { throw new Error('Method "start" not implemented');