UNPKG

@bracketed/logger

Version:

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

15 lines (12 loc) 465 B
import { Color } from '../Colouring/index.mjs'; import { LoggerStyleOptions } from './Options.mjs'; import './Background.mjs'; import './Effect.mjs'; import './Text.mjs'; /** * 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 };