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