UNPKG

@storm-software/config-tools

Version:

A package containing various utilities to support custom workspace configurations and environment management for Storm Software projects, including configuration file handling, environment variable management, and logging utilities.

35 lines (33 loc) 1.18 kB
type GetChalkReturn = { hex: (_: string) => (message?: string) => string | undefined; bgHex: (_: string) => { whiteBright: (message?: string) => string | undefined; white: (message?: string) => string | undefined; }; whiteBright: (message?: string) => string | undefined; white: (message?: string) => string | undefined; gray: (message?: string) => string | undefined; bold: { hex: (_: string) => (message?: string) => string | undefined; bgHex: (_: string) => { whiteBright: (message?: string) => string | undefined; white: (message?: string) => string | undefined; }; whiteBright: (message?: string) => string | undefined; white: (message?: string) => string | undefined; }; dim: { hex: (_: string) => (message?: string) => string | undefined; gray: (message?: string) => string | undefined; }; }; /** * Get the chalk instance * * @remarks * Annoying polyfill to temporarily fix the issue with the `chalk` import * * @returns The chalk instance */ declare const getChalk: () => GetChalkReturn; export { type GetChalkReturn, getChalk };