@elgato/streamdeck
Version:
The official Node.js SDK for creating Stream Deck plugins.
18 lines (17 loc) • 696 B
TypeScript
import { type Manifest } from "../api/index.js";
import { Version } from "./common/version.js";
/**
* Gets the SDK version that the plugin requires.
* @returns SDK version; otherwise `null` when the plugin is DRM protected.
*/
export declare function getSDKVersion(): number | null;
/**
* Gets the minimum version that the plugin requires.
* @returns Minimum required version; otherwise `null` when the plugin is DRM protected.
*/
export declare function getSoftwareMinimumVersion(): Version | null;
/**
* Gets the manifest associated with the plugin.
* @returns The manifest; otherwise `null` when the plugin is DRM protected.
*/
export declare function getManifest(): Manifest | null;