Browse Source

fix(ListenerHandler): Property 'modalUuid' does not exist on type

Owen Diffey 2 years ago
parent
commit
33a2989cc0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      frontend/src/classes/ListenerHandler.class.ts

+ 1 - 1
frontend/src/classes/ListenerHandler.class.ts

@@ -2,7 +2,7 @@ export default class ListenerHandler extends EventTarget {
 	listeners: {
 		[name: string]: Array<{
 			cb: (event: any) => void;
-			options: { replaceable: boolean };
+			options: { replaceable: boolean; modalUuid?: string };
 		}>;
 	};