@elgato/streamdeck
Version:
The official Node.js SDK for creating Stream Deck plugins.
13 lines (12 loc) • 406 B
TypeScript
import { Manifest } from "../api";
import { Version } from "./common/version";
/**
* Gets the minimum version that this plugin required, as defined within the manifest.
* @returns Minimum required version.
*/
export declare function getSoftwareMinimumVersion(): Version;
/**
* Gets the manifest associated with the plugin.
* @returns The manifest.
*/
export declare function getManifest(): Manifest;