UNPKG

@elgato-stream-deck/core

Version:

An npm module for interfacing with the Elgato Stream Deck

8 lines 742 B
import type { HIDDevice } from '../hid-device.js'; import type { OpenStreamDeckOptions, StreamDeckProperties } from './base.js'; import { StreamDeckBase } from './base.js'; import type { StreamdeckImageWriter } from '../services/imageWriter/types.js'; import type { FillImageTargetOptions } from '../util.js'; export type StreamDeckGen1Properties = Omit<StreamDeckProperties, 'KEY_DATA_OFFSET' | 'HAS_NFC_READER' | 'SUPPORTS_CHILD_DEVICES'>; export declare function StreamDeckGen1Factory(device: HIDDevice, options: Required<OpenStreamDeckOptions>, properties: StreamDeckGen1Properties, imageWriter: StreamdeckImageWriter, targetOptions: FillImageTargetOptions, bmpImagePPM: number): StreamDeckBase; //# sourceMappingURL=generic-gen1.d.ts.map