This commit is contained in:
Samandar Turgunboyev
2025-11-27 15:57:26 +05:00
parent 980fb1dd13
commit 969e32be09
177 changed files with 17023 additions and 995 deletions

13
src/global.d.ts vendored Normal file
View File

@@ -0,0 +1,13 @@
interface Window {
Telegram?: {
WebApp?: {
initDataUnsafe?: {
user?: {
id: number;
first_name: string;
last_name?: string;
};
};
};
};
}