node_modules ignore

This commit is contained in:
2025-05-08 23:43:47 +02:00
parent e19d52f172
commit 4574544c9f
65041 changed files with 10593536 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import { Logform } from 'winston';
export interface PrettyPrintOptions {
/**
* Enable or disable timestamps print if it's a boolean value. Use the given format for the timestamps if it's a string
*/
timestamps?: Logform.TimestampOptions['format'] | boolean;
/**
* Enable or disable the use of colors for the log level
*/
colors?: boolean;
}
/**
* Create a pretty print formatter for a winston logger
* @param options
*/
declare const _default: (options?: PrettyPrintOptions) => Logform.Format;
export default _default;
//# sourceMappingURL=pretty-print.d.ts.map