source: trip-planner-front/node_modules/colord/plugins/minify.d.ts@ 8d391a1

Last change on this file since 8d391a1 was e29cc2e, checked in by Ema <ema_spirova@…>, 3 years ago

primeNG components

  • Property mode set to 100644
File size: 508 bytes
Line 
1import { Plugin } from "../extend";
2interface MinificationOptions {
3 hex?: boolean;
4 alphaHex?: boolean;
5 rgb?: boolean;
6 hsl?: boolean;
7 name?: boolean;
8 transparent?: boolean;
9}
10declare module "../colord" {
11 interface Colord {
12 /** Returns the shortest string representation of the color */
13 minify(options?: MinificationOptions): string;
14 }
15}
16/**
17 * A plugin adding a color minification utilities.
18 */
19declare const minifyPlugin: Plugin;
20export default minifyPlugin;
Note: See TracBrowser for help on using the repository browser.