cmux/node_modules/@edge-runtime/format/dist/index.d.mts
2026-01-29 17:36:26 -08:00

7 lines
223 B
TypeScript

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