8 lines
158 B
TypeScript
8 lines
158 B
TypeScript
export type StoredUser = {
|
|
id: number;
|
|
isBot: boolean;
|
|
firstName: string;
|
|
lastName?: string;
|
|
userName?: string;
|
|
isPremium?: boolean;
|
|
} |