first commit

This commit is contained in:
2025-06-10 15:28:23 +05:30
commit e22a2dc275
699 changed files with 100382 additions and 0 deletions

13
app/src/global.d.ts vendored Normal file
View 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;
};
}