UNPKG

@edge-runtime/format

Version:

A printf-like string formatter for Edge Runtime

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