UNPKG

webdriverio-automation

Version:

WebdriverIO-Automation android ios project

17 lines (13 loc) 385 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 IPaletteQuantizer { sample(pointBuffer : PointContainer) : void; quantize() : Palette; }