qauMaWeb/node_modules/colord/extend.d.ts

5 lines
213 B
TypeScript
Raw Permalink Normal View History

2024-10-13 18:02:27 +08:00
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;