mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-01 12:18:35 -05: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;
|
|
}
|