mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2025-12-30 21:49:11 -05:00
14 lines
321 B
TypeScript
14 lines
321 B
TypeScript
export interface UserSettingsGeneralResponse {
|
|
username?: string;
|
|
region?: string;
|
|
originalLanguage?: string;
|
|
}
|
|
|
|
export interface UserSettingsNotificationsResponse {
|
|
enableNotifications: boolean;
|
|
telegramBotUsername?: string;
|
|
discordId?: string;
|
|
telegramChatId?: string;
|
|
telegramSendSilently?: boolean;
|
|
}
|