streamdeck-typescript
Version:
This library will help you build elgato stream deck plugins in typescript
11 lines (10 loc) • 548 B
TypeScript
import { InitPi } from '../interfaces/interfaces';
import { StreamDeckHandlerBase } from './stream-deck-handler-base';
export declare abstract class StreamDeckPropertyInspectorHandler<Settings = any, GlobalSettings = any> extends StreamDeckHandlerBase<GlobalSettings> {
private _actionInfo;
protected get actionInfo(): InitPi['actionInfo'];
sendToPlugin(payload: any, action?: string): void;
requestSettings(): void;
setSettings<Settings = any>(settings: Settings): void;
protected onRegisterPi(actionInfo: string): void;
}