UNPKG

mine-h5-ui

Version:

一款轻量级、模块化基于 Vue3.x 的 H5 前端 UI 组件库 👍

24 lines (23 loc) 339 B
/** * 颜色类型 */ export declare const colorType: { hex: "hex"; rgb: "rgb"; hsb: "hsb"; options(): ({ value: "hex"; } | { value: "rgb"; } | { value: "hsb"; })[]; }; /** * hsb 的 key 值 */ export declare enum hsbKey { h = "hue", s = "saturation", b = "brightness" }