@elgato/streamdeck
Version:
The official Node.js SDK for creating Stream Deck plugins.
14 lines (13 loc) • 504 B
TypeScript
import { MessageGateway } from "../../common/messaging";
import { Action } from "../actions/action";
import { PropertyInspector } from "./property-inspector";
/**
* Gets the current property inspector.
* @returns The property inspector; otherwise `undefined`.
*/
export declare function getCurrentUI(): PropertyInspector | undefined;
/**
* Router responsible for communicating with the property inspector.
*/
declare const router: MessageGateway<Action<import("..").JsonObject>>;
export { router };