UNPKG

es-toolkit

Version:

A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.

99 lines (98 loc) 3.45 kB
import { ansi256 } from "./ansi256.mjs"; import { bgAnsi256 } from "./bgAnsi256.mjs"; import { bgBlack } from "./bgBlack.mjs"; import { bgBlackBright } from "./bgBlackBright.mjs"; import { bgBlue } from "./bgBlue.mjs"; import { bgBlueBright } from "./bgBlueBright.mjs"; import { bgCyan } from "./bgCyan.mjs"; import { bgCyanBright } from "./bgCyanBright.mjs"; import { bgGreen } from "./bgGreen.mjs"; import { bgGreenBright } from "./bgGreenBright.mjs"; import { bgHex } from "./bgHex.mjs"; import { bgMagenta } from "./bgMagenta.mjs"; import { bgMagentaBright } from "./bgMagentaBright.mjs"; import { bgRed } from "./bgRed.mjs"; import { bgRedBright } from "./bgRedBright.mjs"; import { bgRgb } from "./bgRgb.mjs"; import { bgWhite } from "./bgWhite.mjs"; import { bgWhiteBright } from "./bgWhiteBright.mjs"; import { bgYellow } from "./bgYellow.mjs"; import { bgYellowBright } from "./bgYellowBright.mjs"; import { black } from "./black.mjs"; import { blackBright } from "./blackBright.mjs"; import { blue } from "./blue.mjs"; import { blueBright } from "./blueBright.mjs"; import { bold } from "./bold.mjs"; import { cyan } from "./cyan.mjs"; import { cyanBright } from "./cyanBright.mjs"; import { dim } from "./dim.mjs"; import { green } from "./green.mjs"; import { greenBright } from "./greenBright.mjs"; import { hex } from "./hex.mjs"; import { hidden } from "./hidden.mjs"; import { inverse } from "./inverse.mjs"; import { italic } from "./italic.mjs"; import { magenta } from "./magenta.mjs"; import { magentaBright } from "./magentaBright.mjs"; import { red } from "./red.mjs"; import { redBright } from "./redBright.mjs"; import { reset } from "./reset.mjs"; import { rgb } from "./rgb.mjs"; import { strikethrough } from "./strikethrough.mjs"; import { underline } from "./underline.mjs"; import { white } from "./white.mjs"; import { whiteBright } from "./whiteBright.mjs"; import { yellow } from "./yellow.mjs"; import { yellowBright } from "./yellowBright.mjs"; //#region src/server/colors/index.d.ts declare const colors: Readonly<{ reset: typeof reset; bold: typeof bold; dim: typeof dim; italic: typeof italic; underline: typeof underline; inverse: typeof inverse; hidden: typeof hidden; strikethrough: typeof strikethrough; black: typeof black; red: typeof red; green: typeof green; yellow: typeof yellow; blue: typeof blue; magenta: typeof magenta; cyan: typeof cyan; white: typeof white; gray: typeof blackBright; blackBright: typeof blackBright; redBright: typeof redBright; greenBright: typeof greenBright; yellowBright: typeof yellowBright; blueBright: typeof blueBright; magentaBright: typeof magentaBright; cyanBright: typeof cyanBright; whiteBright: typeof whiteBright; bgBlack: typeof bgBlack; bgRed: typeof bgRed; bgGreen: typeof bgGreen; bgYellow: typeof bgYellow; bgBlue: typeof bgBlue; bgMagenta: typeof bgMagenta; bgCyan: typeof bgCyan; bgWhite: typeof bgWhite; bgBlackBright: typeof bgBlackBright; bgRedBright: typeof bgRedBright; bgGreenBright: typeof bgGreenBright; bgYellowBright: typeof bgYellowBright; bgBlueBright: typeof bgBlueBright; bgMagentaBright: typeof bgMagentaBright; bgCyanBright: typeof bgCyanBright; bgWhiteBright: typeof bgWhiteBright; ansi256: typeof ansi256; bgAnsi256: typeof bgAnsi256; rgb: typeof rgb; bgRgb: typeof bgRgb; hex: typeof hex; bgHex: typeof bgHex; }>; //#endregion export { colors };