Skip to content

Commit

Permalink
protected api
Browse files Browse the repository at this point in the history
  • Loading branch information
rkamysz committed Jul 25, 2023
1 parent 5045b58 commit 18b92fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/api/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
import { ApiConfig } from './api.types';

export class Api<WebFramework> {
private app: WebFramework;
protected app: WebFramework;

constructor(private config: ApiConfig) {}
constructor(protected config: ApiConfig) {}

public async start() {
throw new Error('Method "start" not implemented');
Expand Down

0 comments on commit 18b92fe

Please sign in to comment.