UNPKG

@bracketed/logger

Version:

An alternative to your run-of-the-mill node console logging functions!

15 lines (12 loc) 460 B
import { Color } from '../Colouring/index.js'; import { LoggerStyleOptions } from './Options.js'; import './Background.js'; import './Effect.js'; import './Text.js'; /** * The value accepted by {@link LoggerStyle}'s constructor. Read `colorette`'s documentation for more information. * @since 1.0.0 * @seealso https://www.npmjs.com/package/colorette */ type LoggerStyleResolvable = Color | LoggerStyleOptions; export type { LoggerStyleResolvable };