UNPKG

@runtime-edge/format

Version:

A printf-like string formatter for Runtime Edge

8 lines (6 loc) 223 B
interface FormatterOptions { formatError?: (error: Error) => string; customInspectSymbol?: symbol; } declare function createFormat(opts?: FormatterOptions): (...args: unknown[]) => string; export { createFormat };