@elgato-stream-deck/core
Version:
An npm module for interfacing with the Elgato Stream Deck
10 lines • 449 B
TypeScript
import type { Dimension } from '../../id.js';
import type { FillImageOptions } from '../../types.js';
export interface InternalFillImageOptions extends FillImageOptions {
offset: number;
stride: number;
}
export interface ButtonLcdImagePacker {
convertPixelBuffer(sourceBuffer: Uint8Array | Uint8ClampedArray, sourceOptions: InternalFillImageOptions, targetSize: Dimension): Promise<Uint8Array>;
}
//# sourceMappingURL=interface.d.ts.map