streamdeck-typescript
Version:
This library will help you build elgato stream deck plugins in typescript
18 lines (15 loc) • 496 B
text/typescript
/*
* Author: XeroxDev <help@xeroxdev.de>
* Copyright (c) 2021.
*
*/
import { StreamDeckAction } from './stream-deck-action';
import { StreamDeckHandlerBase } from './stream-deck-handler-base';
import { StreamDeckPluginHandler } from './stream-deck-plugin-handler';
import { StreamDeckPropertyInspectorHandler } from './stream-deck-property-inspector-handler';
export {
StreamDeckAction,
StreamDeckHandlerBase,
StreamDeckPluginHandler,
StreamDeckPropertyInspectorHandler,
};