UNPKG

t-comm

Version:

专业、稳定、纯粹的工具库

13 lines (12 loc) 300 B
import type Chalk from 'chalk'; /** * 获取 chalk 库 * chalk 是一个用于在终端输出彩色文本的第三方库 * @returns chalk 库 * @example * ```ts * const chalk = getChalk(); * console.log(chalk.red('error message')); * ``` */ export declare function getChalk(): typeof Chalk;