blob: c5f8d2e6f9557e45fd02f06446cf24c40d6d4aca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
export function on_volume_changed() {
}
export function list_controls() {
return new Promise((result, reject) => {
result([
{ control: "MAIN", volume: 0.5 }
]);
});
}
export function set_volume() {
}
|