Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
434 B
9 lines
434 B
2 years ago
|
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;
|