UNPKG

@visulima/cerebro

Version:

A delightful toolkit for building cross-runtime CLIs for Node.js, Deno, and Bun.

9 lines (8 loc) 373 B
import type { ConstructorOptions, PailServerType } from "@visulima/pail"; /** * Create a Pail logger. * @param options Optional configuration options for the logger * @returns A configured Pail logger instance */ declare const createPailLogger: (options?: Partial<ConstructorOptions<string, string>>) => PailServerType<string, string>; export default createPailLogger;