We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70760fd commit 4ad2b5fCopy full SHA for 4ad2b5f
packages/core/src/utils/log.ts
@@ -0,0 +1,5 @@
1
+export type LogType = 'log' | 'warn' | 'error' | 'info';
2
+
3
+export interface Logger {
4
+ (msg: string, type?: LogType, args?: unknown): void;
5
+}
0 commit comments