UNPKG

@elgato/streamdeck

Version:

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

15 lines (14 loc) 280 B
/** * JSON object. */ export type JsonObject = { [key: string]: JsonValue; }; /** * JSON primitive value. */ export type JsonPrimitive = boolean | number | string | null | undefined; /** * JSON value. */ export type JsonValue = JsonObject | JsonPrimitive | JsonValue[];