UNPKG

416 BTypeScriptView Raw
1/// <reference types="node" />
2import { Transform } from 'stream';
3import { TXIOutputFormat } from '@fitbit/image-codec-txi';
4export { TXIOutputFormat };
5declare type RGBAOutputFormat = TXIOutputFormat.RGBA8888 | TXIOutputFormat.RGBA6666;
6export interface ConvertImageToTXIOptions {
7 rgbaOutputFormat?: RGBAOutputFormat;
8}
9export default function convertImageToTXI(options?: ConvertImageToTXIOptions): Transform;