mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-08 08:39:59 +00:00
12 lines
285 B
TypeScript
12 lines
285 B
TypeScript
"use strict";
|
|
|
|
import EventData from "./EventData";
|
|
|
|
import { SessionEventType } from "../enums";
|
|
|
|
export default class ActiveInputStateEventData extends EventData {
|
|
constructor(public activeInputState: number) {
|
|
super(SessionEventType.ACTIVE_INPUT_STATE_CHANGED);
|
|
}
|
|
}
|