fix: add ?

This commit is contained in:
Silentoplayz 2025-06-18 02:01:21 -04:00
parent d66285f926
commit 3be4fb25cd

View File

@ -135,42 +135,42 @@ type OllamaModelDetails = {
}; };
type Settings = { type Settings = {
pinnedModels: never[]; pinnedModels?: never[];
toolServers: never[]; toolServers?: never[];
detectArtifacts: boolean; detectArtifacts?: boolean;
showUpdateToast: boolean; showUpdateToast?: boolean;
showChangelog: boolean; showChangelog?: boolean;
showEmojiInCall: boolean; showEmojiInCall?: boolean;
voiceInterruption: boolean; voiceInterruption?: boolean;
collapseCodeBlocks: boolean; collapseCodeBlocks?: boolean;
expandDetails: boolean; expandDetails?: boolean;
notificationSound: boolean; notificationSound?: boolean;
notificationSoundAlways: boolean; notificationSoundAlways?: boolean;
stylizedPdfExport: boolean; stylizedPdfExport?: boolean;
notifications: any; notifications?: any;
imageCompression: boolean; imageCompression?: boolean;
imageCompressionSize: any; imageCompressionSize?: any;
widescreenMode: null; widescreenMode?: null;
largeTextAsFile: boolean; largeTextAsFile?: boolean;
promptAutocomplete: boolean; promptAutocomplete?: boolean;
hapticFeedback: boolean; hapticFeedback?: boolean;
responseAutoCopy: any; responseAutoCopy?: any;
richTextInput: boolean; richTextInput?: boolean;
params: any; params?: any;
userLocation: any; userLocation?: any;
webSearch: boolean; webSearch?: boolean;
memory: boolean; memory?: boolean;
autoTags: boolean; autoTags?: boolean;
autoFollowUps: boolean; autoFollowUps?: boolean;
splitLargeChunks(body: any, splitLargeChunks: any): unknown; splitLargeChunks?(body: any, splitLargeChunks: any): unknown;
backgroundImageUrl: null; backgroundImageUrl?: null;
landingPageMode: string; landingPageMode?: string;
iframeSandboxAllowForms: boolean; iframeSandboxAllowForms?: boolean;
iframeSandboxAllowSameOrigin: boolean; iframeSandboxAllowSameOrigin?: boolean;
scrollOnBranchChange: boolean; scrollOnBranchChange?: boolean;
directConnections: null; directConnections?: null;
chatBubble: boolean; chatBubble?: boolean;
copyFormatted: boolean; copyFormatted?: boolean;
models?: string[]; models?: string[];
conversationMode?: boolean; conversationMode?: boolean;
speechAutoSend?: boolean; speechAutoSend?: boolean;
@ -181,7 +181,7 @@ type Settings = {
highContrastMode?: boolean; highContrastMode?: boolean;
title?: TitleSettings; title?: TitleSettings;
splitLargeDeltas?: boolean; splitLargeDeltas?: boolean;
chatDirection: 'LTR' | 'RTL' | 'auto'; chatDirection?: 'LTR' | 'RTL' | 'auto';
ctrlEnterToSend?: boolean; ctrlEnterToSend?: boolean;
system?: string; system?: string;