next
Version:
The React Framework
19 lines (18 loc) • 529 B
TypeScript
/// <reference types="node" />
declare type RotateOperation = {
type: 'rotate';
numRotations: number;
};
declare type ResizeOperation = {
type: 'resize';
} & ({
width: number;
height?: never;
} | {
height: number;
width?: never;
});
export declare type Operation = RotateOperation | ResizeOperation;
export declare type Encoding = 'jpeg' | 'png' | 'webp';
export declare function processBuffer(buffer: Buffer, operations: Operation[], encoding: Encoding, quality: number): Promise<Buffer>;
export {};