Formatting / Intl

This commit is contained in:
2023-08-24 16:55:36 +01:00
parent 4b85a16904
commit 9c5d1ea55d
10 changed files with 134 additions and 73 deletions

View File

@ -47,7 +47,7 @@ export interface SystemInterface {
DisconnectRelay(address: string): void;
BroadcastEvent(ev: NostrEvent): void;
WriteOnceToRelay(relay: string, ev: NostrEvent): Promise<void>;
get ProfileLoader(): ProfileLoaderService
get ProfileLoader(): ProfileLoaderService;
}
export interface SystemSnapshot {

View File

@ -20,7 +20,7 @@ export class SystemWorker extends ExternalStore<SystemSnapshot> implements Syste
throw new Error("SharedWorker is not supported");
}
}
get ProfileLoader(): ProfileLoaderService {
throw new Error("Method not implemented.");
}