mirror of
https://github.com/sct/overseerr.git
synced 2025-12-25 08:14:29 +01: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;
|
|
}
|