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