fix: optional tg user fields
This commit is contained in:
@@ -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);
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user