Add a missing JS property

This commit is contained in:
Igor Katson 2024-04-29 18:40:02 +01:00
parent 517b62a35b
commit 7450e43eb8

View file

@ -32,5 +32,8 @@ export const APIContext = createContext<RqbitAPI>({
getTorrentStreamUrl: () => {
throw new Error("Function not implemented.");
},
getStreamLogsUrl: function (): string | null {
throw new Error("Function not implemented.");
},
});
export const RefreshTorrentStatsContext = createContext({ refresh: () => {} });