mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-08 19:34:56 +02:00
7 lines
155 B
TypeScript
7 lines
155 B
TypeScript
interface Logger {
|
|
info: (message: string) => void;
|
|
log: (message: string) => void;
|
|
error: (message: string) => void;
|
|
}
|
|
export default Logger;
|