@roarr/browser-log-writer
Version:
Roarr log writer for use in a web browser.
10 lines • 343 B
TypeScript
import { type LogMethods, type Storage } from '../types';
import { type LogWriter } from 'roarr';
type Configuration = {
logMethods?: LogMethods;
storage?: Storage;
styleOutput?: boolean;
};
export declare const createLogWriter: (configuration?: Configuration) => LogWriter;
export {};
//# sourceMappingURL=createLogWriter.d.ts.map