@logitech-mx-creative-console/core
Version:
An npm module for interfacing with the Logitech MX Creative Console
10 lines • 429 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, sourceOptions: InternalFillImageOptions, targetSize: Dimension): Promise<Uint8Array>;
}
//# sourceMappingURL=interface.d.ts.map