Add stubbed cast.framework API implementation

This commit is contained in:
hensm
2019-03-19 16:32:09 +00:00
parent 89fc20f6a3
commit 270d661de0
20 changed files with 605 additions and 21 deletions

View File

@@ -0,0 +1,12 @@
"use strict";
import { SessionEventType } from "../enums";
export default class ApplicationStatusEventData {
public type = SessionEventType.VOLUME_CHANGED;
constructor (
public volume: number
, public isMute: boolean) {}
}