types fix

This commit is contained in:
TheJuze
2024-03-19 14:38:42 +03:00
parent baa29cf340
commit 67cbb1a8eb
4 changed files with 4 additions and 8 deletions

View File

@@ -30,7 +30,7 @@ export default class Unit {
public readonly indexer: IndexerService | undefined;
public readonly frontage: FrontageService | undefined;
public readonly frontage: FrontageService;
public readonly aggregator: Aggregator;

View File

@@ -4,10 +4,6 @@ import { aggregatedMetricsSchema } from './schemas';
export class FrontageService {
private readonly apiUrl: string;
get api() {
return this.apiUrl;
}
constructor(apiUrl: string) {
this.apiUrl = apiUrl;