1
0
Fork 0
forked from Simnation/Main
Main/resources/[tools]/bl_idcard/web/src/utils/debug/visibility.ts
2025-08-04 04:28:47 +02:00

8 lines
261 B
TypeScript

import { Receive } from '@enums/events'
import { DebugEventSend } from '@utils/eventsHandlers'
/**
* The debug response for the visibility debug action.
*/
export function toggleVisible(visible: boolean): void {
DebugEventSend(Receive.visible, visible)
}