mirror of
https://github.com/billsonnn/nitro-react.git
synced 2024-11-30 17:00:52 +01:00
9 lines
291 B
TypeScript
9 lines
291 B
TypeScript
import { NitroEvent } from '@nitrots/nitro-renderer';
|
|
|
|
export class RoomWidgetCameraEvent extends NitroEvent
|
|
{
|
|
public static SHOW_CAMERA: string = 'NE_SHOW_CAMERA';
|
|
public static HIDE_CAMERA: string = 'NE_HIDE_CAMERA';
|
|
public static TOGGLE_CAMERA: string = 'NE_TOGGLE_CAMERA';
|
|
}
|