UNPKG

@types/resemblejs

Version:
13 lines (10 loc) 348 B
import { ComparisonOptions, ComparisonResult } from "."; export = compareImages; /** * The API under Node is the same as on the `resemble.compare` but promise based */ declare function compareImages( image1: string | ImageData | Buffer, image2: string | ImageData | Buffer, options: ComparisonOptions, ): Promise<ComparisonResult>;