Interface ConfigOptions

interface ConfigOptions {
    autoFocus: boolean;
    codeBlockActions?: CodeBlockActions;
    codeCopyToClipboardEnabled?: boolean;
    codeInsertToCursorEnabled?: boolean;
    feedbackOptions: {
        label: string;
        value: string;
    }[];
    maxTabs: number;
    maxTabsTooltipDuration?: number;
    maxUserInput: number;
    noMoreTabsTooltip?: string;
    showPromptField: boolean;
    tabBarButtons?: TabBarMainAction[];
    test?: boolean;
    userInputLengthWarningThreshold: number;
}

Hierarchy (view full)

Properties

autoFocus: boolean
codeBlockActions?: CodeBlockActions
codeCopyToClipboardEnabled?: boolean
codeInsertToCursorEnabled?: boolean
feedbackOptions: {
    label: string;
    value: string;
}[]

Type declaration

  • label: string
  • value: string
maxTabs: number
maxTabsTooltipDuration?: number
maxUserInput: number
noMoreTabsTooltip?: string
showPromptField: boolean
tabBarButtons?: TabBarMainAction[]
test?: boolean
userInputLengthWarningThreshold: number