UNPKG

webdriverio-automation

Version:

WebdriverIO-Automation android ios project

13 lines (12 loc) 379 B
/** * @preserve * Copyright 2015-2016 Igor Bezkrovnyi * All rights reserved. (MIT Licensed) * * common.ts - part of Image Quantization Library */ import { PointContainer } from "../utils/pointContainer"; import { Palette } from "../utils/palette"; export interface IImageDitherer { quantize(pointBuffer: PointContainer, palette: Palette): PointContainer; }