Files
tg-chat-bot/src/model/stored-user.ts
T

8 lines
158 B
TypeScript

export type StoredUser = {
id: number;
isBot: boolean;
firstName: string;
lastName?: string;
userName?: string;
isPremium?: boolean;
}