@elgato/streamdeck
Version:
The official Node.js SDK for creating Stream Deck plugins.
19 lines (18 loc) • 677 B
JavaScript
/**
* Defines the target of a request, i.e. whether the request should update the Stream Deck hardware, Stream Deck software (application), or both, when calling `setImage` and `setState`.
*/
export var Target;
(function (Target) {
/**
* Hardware and software should be updated as part of the request.
*/
Target[Target["HardwareAndSoftware"] = 0] = "HardwareAndSoftware";
/**
* Hardware only should be updated as part of the request.
*/
Target[Target["Hardware"] = 1] = "Hardware";
/**
* Software only should be updated as part of the request.
*/
Target[Target["Software"] = 2] = "Software";
})(Target || (Target = {}));