mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-08 08:39:59 +00:00
16 lines
349 B
TypeScript
Executable File
16 lines
349 B
TypeScript
Executable File
"use strict";
|
|
|
|
import { VolumeControlType } from "../enums";
|
|
|
|
|
|
// https://developers.google.com/cast/docs/reference/chrome/chrome.cast.Volume
|
|
export default class Volume {
|
|
public controlType: string;
|
|
public stepInterval: number;
|
|
|
|
constructor (
|
|
public level: number = null
|
|
, public muted: boolean = null) {
|
|
}
|
|
};
|