@poppinss/colors
Version:
A wrapper on top of kleur with ability to write test against the color functions
16 lines (15 loc) • 339 B
TypeScript
/**
* @poppinss/colors
*
* (c) Poppinss
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
import { type Colors } from './src/base.ts';
declare const useColors: {
ansi(): Colors;
silent(): Colors;
raw(): Colors;
};
export default useColors;