Fix build
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Kieran 2023-09-05 15:07:06 +01:00
parent df7353a43c
commit f9d2a22c74
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941
1 changed files with 3 additions and 3 deletions

View File

@ -2,8 +2,8 @@ import { ExternalStore } from "@snort/shared";
import { SystemSnapshot, SystemInterface, ProfileLoaderService } from ".";
import { AuthHandler, ConnectionStateSnapshot, RelaySettings } from "./connection";
import { NostrEvent } from "./nostr";
import { NoteStore } from "./note-collection";
import { NostrEvent, TaggedNostrEvent } from "./nostr";
import { NoteStore, NoteStoreSnapshotData } from "./note-collection";
import { Query } from "./query";
import { RequestBuilder } from "./request-builder";
@ -21,7 +21,7 @@ export class SystemWorker extends ExternalStore<SystemSnapshot> implements Syste
}
}
Fetch(req: RequestBuilder): Promise<Query> {
Fetch(req: RequestBuilder, cb?: (evs: Array<TaggedNostrEvent>) => void) : Promise<NoteStoreSnapshotData> {
throw new Error("Method not implemented.");
}