Files
sct-overseerr/server/interfaces/api/userSettingsInterfaces.ts
2021-03-14 22:39:43 +09:00

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;
}