mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-09 09:09:58 +00:00
13 lines
257 B
TypeScript
13 lines
257 B
TypeScript
"use strict";
|
|
|
|
import { SessionEventType } from "../enums";
|
|
|
|
|
|
export default class ApplicationStatusEventData {
|
|
public type = SessionEventType.VOLUME_CHANGED;
|
|
|
|
constructor (
|
|
public volume: number
|
|
, public isMute: boolean) {}
|
|
}
|