brows3r — TypeScript API
    Preparing search index...

    Interface TextPreviewPrefs

    Per-user preferences for text/code previews (Shiki view and Monaco editor). Both surfaces read from the same slice so toggling word-wrap or font-size is consistent whether the user is viewing or editing.

    themeOverride of "auto" follows the global UI theme; explicit "light" or "dark" keeps a per-preview override.

    interface TextPreviewPrefs {
        fontSize: number;
        lineNumbers: boolean;
        themeOverride: "auto" | "light" | "dark";
        wordWrap: boolean;
    }
    Index

    Properties

    fontSize: number
    lineNumbers: boolean
    themeOverride: "auto" | "light" | "dark"
    wordWrap: boolean