source: trip-planner-front/node_modules/picocolors/types.ts@ 6c1585f

Last change on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 610 bytes
Line 
1export type Formatter = (input: string | number | null | undefined) => string
2
3export interface Colors {
4 isColorSupported: boolean
5 reset: Formatter
6 bold: Formatter
7 dim: Formatter
8 italic: Formatter
9 underline: Formatter
10 inverse: Formatter
11 hidden: Formatter
12 strikethrough: Formatter
13 black: Formatter
14 red: Formatter
15 green: Formatter
16 yellow: Formatter
17 blue: Formatter
18 magenta: Formatter
19 cyan: Formatter
20 white: Formatter
21 gray: Formatter
22 bgBlack: Formatter
23 bgRed: Formatter
24 bgGreen: Formatter
25 bgYellow: Formatter
26 bgBlue: Formatter
27 bgMagenta: Formatter
28 bgCyan: Formatter
29 bgWhite: Formatter
30}
Note: See TracBrowser for help on using the repository browser.