@basmilius/apple-airplay 0.0.15 → 0.0.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
+ import * as Proto from "../proto";
1
2
  import AirPlayDataStreamMessages from "./dataStreamMessages";
2
3
  import AirPlayStream from "./stream";
3
- import * as Proto from "@/proto";
4
4
  type EventMap = {
5
5
  readonly deviceInfo: [Proto.DeviceInfoMessage];
6
6
  readonly originClientProperties: [Proto.OriginClientPropertiesMessage];
@@ -7,4 +7,5 @@ export default class {
7
7
  sendButtonEvent(usagePage: number, usage: number, buttonDown: boolean): Proto.ProtocolMessage;
8
8
  sendCommand(command: Proto.Command, options?: Proto.CommandOptions): Proto.ProtocolMessage;
9
9
  setConnectionState(state?: Proto.SetConnectionStateMessage_ConnectionState): Proto.ProtocolMessage;
10
+ setVolume(volume: number): Proto.ProtocolMessage;
10
11
  }