文件操作 - lab.d.ts
返回文件管理
返回主菜单
删除本文件
文件: /var/www/OLD/node_modules/colord/plugins/lab.d.ts
编辑文件内容
import { LabaColor, AnyColor } from "../types"; import { Plugin } from "../extend"; declare module "../colord" { interface Colord { /** * Converts a color to CIELAB color space and returns an object. * The object always includes `alpha` value [0, 1]. */ toLab(): LabaColor; /** * Calculates the perceived color difference for two colors according to * [Delta E2000](https://en.wikipedia.org/wiki/Color_difference#CIEDE2000). * Returns a value in [0, 1] range. */ delta(color?: AnyColor | Colord): number; } } /** * A plugin adding support for CIELAB color space. * https://en.wikipedia.org/wiki/CIELAB_color_space */ declare const labPlugin: Plugin; export default labPlugin;
修改文件时间
将文件时间修改为当前时间的前一年
删除文件