MobX Lark
    Preparing search index...

    Interface TextStyle

    interface TextStyle {
        align?: Align;
        background_color?:
            | "LightRedBackground"
            | "LightOrangeBackground"
            | "LightYellowBackground"
            | "LightGreenBackground"
            | "LightBlueBackground"
            | "LightPurpleBackground"
            | "PaleGrayBackground"
            | "DarkRedBackground"
            | "DarkOrangeBackground"
            | "DarkYellowBackground"
            | "DarkGreenBackground"
            | "DarkBlueBackground"
            | "DarkPurpleBackground"
            | "DarkGrayBackground"
            | "LightGrayBackground";
        done?: boolean;
        folded?: boolean;
        indentation_level?: TextIndentationLevel;
        language?: CodeLanguage;
        sequence?: string;
        wrap?: boolean;
    }

    Hierarchy

    Index

    Properties

    align?: Align
    background_color?:
        | "LightRedBackground"
        | "LightOrangeBackground"
        | "LightYellowBackground"
        | "LightGreenBackground"
        | "LightBlueBackground"
        | "LightPurpleBackground"
        | "PaleGrayBackground"
        | "DarkRedBackground"
        | "DarkOrangeBackground"
        | "DarkYellowBackground"
        | "DarkGreenBackground"
        | "DarkBlueBackground"
        | "DarkPurpleBackground"
        | "DarkGrayBackground"
        | "LightGrayBackground"
    done?: boolean
    folded?: boolean
    indentation_level?: TextIndentationLevel
    language?: CodeLanguage
    sequence?: string
    wrap?: boolean