Fix incorrect type definitions

This commit is contained in:
DaneEveritt 2022-06-27 20:54:58 -04:00
parent 4aa163b76f
commit 20a7794a18
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53

View file

@ -14,7 +14,6 @@ interface ServerDataStore {
data?: Server;
inConflictState: Computed<ServerDataStore, boolean>;
isInstalling: Computed<ServerDataStore, boolean>;
isTransferring: Computed<ServerDataStore, boolean>;
permissions: string[];
getServer: Thunk<ServerDataStore, string, Record<string, unknown>, ServerStore, Promise<void>>;