Skip to content

Commit

Permalink
Resolve TODOs
Browse files Browse the repository at this point in the history
  • Loading branch information
toasted-nutbread committed Dec 27, 2023
1 parent ac396af commit 3f7b6d0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions types/ext/application.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
import type {TokenString} from './core';
import type {SearchMode} from './display';
import type {FrameEndpointReadyDetails, FrameEndpointConnectedDetails} from './frame-client';
import type {DatabaseUpdateType, DatabaseUpdateCause} from './backend';
import type {
ApiMap as BaseApiMap,
ApiHandler as BaseApiHandler,
Expand Down Expand Up @@ -70,8 +71,8 @@ export type ApiSurface = {
};
applicationDatabaseUpdated: {
params: {
type: string; // TODO : Enum?
cause: string; // TODO : Enum?
type: DatabaseUpdateType;
cause: DatabaseUpdateCause;
};
return: void;
};
Expand Down

0 comments on commit 3f7b6d0

Please sign in to comment.