mirror of
https://github.com/xlorepdarkhelm/numinar-coding-project.git
synced 2026-09-06 07:28:25 -04: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;
|