fix: optional tg user fields

This commit is contained in:
2025-04-10 11:19:58 +04:00
parent 281b655881
commit 3b4fed80e8

View File

@@ -4,8 +4,8 @@
/* eslint-disable */
export type TgUserSchema = {
id: number;
firstName: string;
lastName: string;
username: string;
firstName: (string | null);
lastName: (string | null);
username: (string | null);
};