mirror of
https://github.com/ershisan99/flashcards-admin-bot.git
synced 2025-12-16 20:59:25 +00:00
10 lines
202 B
TypeScript
10 lines
202 B
TypeScript
export type UserData = {
|
|
name: string;
|
|
availableTime: { from: number; to: number | null };
|
|
tgUsername: string;
|
|
userId: string;
|
|
chatId: string;
|
|
};
|
|
|
|
export type Data = Record<string, UserData>;
|