import ControllerPlugin from "."; import { IPluginEvent, IPluginEventMap } from "../../plugins/types"; interface IControllerEvent extends IPluginEvent { target: ControllerPlugin; } export interface IControllerPluginEventMap extends IPluginEventMap { screenshot: IControllerEvent; recordStart: IControllerEvent; recordStop: IControllerEvent; fullscreen: IControllerEvent; information: IControllerEvent; ptzControl: IControllerEvent; rotate: IControllerEvent; volume: IControllerEvent; play: IControllerEvent; } export {};