@elgato/streamdeck
Version:
The official Node.js SDK for creating Stream Deck plugins.
18 lines (17 loc) • 534 B
TypeScript
/**
* 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 declare enum Target {
/**
* Hardware and software should be updated as part of the request.
*/
HardwareAndSoftware = 0,
/**
* Hardware only should be updated as part of the request.
*/
Hardware = 1,
/**
* Software only should be updated as part of the request.
*/
Software = 2
}