Explorar el Código

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

Owen Diffey hace 2 años
padre
commit
33a2989cc0
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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 };
 		}>;
 	};