UNPKG

upscayl-node

Version:
16 lines (15 loc) 407 B
export interface Driver { platform: string; architecture: string; upscale: (imagePath: string, imageOutputPath: string, options: UpscaleOptionsI) => Promise<string>; } export interface UpscaleOptionsI { model: string; scale: number; saveImageAs: ImageExt; compression: number; customWidth?: number; tileSize?: number; } type ImageExt = 'jpg' | 'png' | 'webp'; export {};