@elgato/streamdeck
Version:
The official Node.js SDK for creating Stream Deck plugins.
23 lines (22 loc) • 898 B
JavaScript
/**
* Defines the type of argument supplied by Stream Deck.
*/
export var RegistrationParameter;
(function (RegistrationParameter) {
/**
* Identifies the argument that specifies the web socket port that Stream Deck is listening on.
*/
RegistrationParameter["Port"] = "-port";
/**
* Identifies the argument that supplies information about the Stream Deck and the plugin.
*/
RegistrationParameter["Info"] = "-info";
/**
* Identifies the argument that specifies the unique identifier that can be used when registering the plugin.
*/
RegistrationParameter["PluginUUID"] = "-pluginUUID";
/**
* Identifies the argument that specifies the event to be sent to Stream Deck as part of the registration procedure.
*/
RegistrationParameter["RegisterEvent"] = "-registerEvent";
})(RegistrationParameter || (RegistrationParameter = {}));