UNPKG

@elgato/streamdeck

Version:

The official Node.js SDK for creating Stream Deck plugins.

13 lines (12 loc) 259 B
/** * Resources (files) associated with an action, represented as a map of keys and paths, for example. * ``` * { * fileOne: "c:\\hello-world.txt", * anotherFile: "c:\\icon.png" * } * ``` */ export type Resources = { [key: string]: string; };