Urara-Blog/node_modules/.pnpm-store/v3/files/88/83da78d38465d7eec937d4266a02f80fabdbd54f7d16da7f328c839efa05c378d5ba4eee5c7619e043b7683fa4a0b621bb710ea3c29cd5dbb41b92d4bb42fb
2022-08-14 01:14:53 +08:00

8 lines
426 B
Text

import { Parsers, ParseResult, Input, Format } from "./types";
export declare const parsers: Parsers;
/** Tries to convert an incoming value into RGBA color by going through all color model parsers */
export declare const parse: (input: Input) => ParseResult | [null, undefined];
/**
* Returns a color model name for the input passed to the function.
*/
export declare const getFormat: (input: Input) => Format | undefined;