UNPKG

vue-simple-range-slider

Version:

Change Your numeric value or numeric range value with dragging handles

15 lines (14 loc) 419 B
import { XyzaColor } from "../types"; import { Plugin } from "../extend"; declare module "../colord" { interface Colord { toXyz(): XyzaColor; } } /** * A plugin adding support for CIE XYZ colorspace. * Wikipedia: https://en.wikipedia.org/wiki/CIE_1931_color_space * Helpful article: https://www.sttmedia.com/colormodel-xyz */ declare const xyzPlugin: Plugin; export default xyzPlugin;