projecte_ionic/node_modules/colord/extend.d.ts
2022-02-09 18:30:03 +01:00

5 lines
217 B
TypeScript
Executable file

import { Colord } from "./colord";
import { Parsers } from "./types";
export declare type Plugin = (ColordClass: typeof Colord, parsers: Parsers) => void;
export declare const extend: (plugins: Plugin[]) => void;