Urara-Blog/node_modules/.pnpm-store/v3/files/0f/4f105d8f2663b39972d2b228c001f4b6c0451cff84fe649ba69316d403a032a8a312581c9fec0b27dc13f1ff50359cb4136bd2949c4475c66e2368ae36d663
2022-08-14 01:14:53 +08:00

20 lines
508 B
Text

import { Plugin } from "../extend";
interface MinificationOptions {
hex?: boolean;
alphaHex?: boolean;
rgb?: boolean;
hsl?: boolean;
name?: boolean;
transparent?: boolean;
}
declare module "../colord" {
interface Colord {
/** Returns the shortest string representation of the color */
minify(options?: MinificationOptions): string;
}
}
/**
* A plugin adding a color minification utilities.
*/
declare const minifyPlugin: Plugin;
export default minifyPlugin;