mirror of
https://github.com/sct/overseerr.git
synced 2025-09-17 17:24:35 +02:00
15 lines
340 B
TypeScript
15 lines
340 B
TypeScript
export interface UserSettingsGeneralResponse {
|
|
username?: string;
|
|
region?: string;
|
|
originalLanguage?: string;
|
|
}
|
|
|
|
export interface UserSettingsNotificationsResponse {
|
|
enableNotifications: boolean;
|
|
telegramBotUsername?: string;
|
|
discordId?: string;
|
|
telegramChatId?: string;
|
|
telegramSendSilently?: boolean;
|
|
pgpKey?: string;
|
|
}
|