first commit
This commit is contained in:
13
app/src/global.d.ts
vendored
Normal file
13
app/src/global.d.ts
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
// src/global.d.ts
|
||||
import { LogType } from "../components/ui/log/LoggerContext";
|
||||
|
||||
declare global {
|
||||
const echo: {
|
||||
log: (message: string) => void;
|
||||
info: (message: string) => void;
|
||||
warn: (message: string) => void;
|
||||
error: (message: string) => void;
|
||||
success: (message: string) => void;
|
||||
clear: () => void;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user