docx
    Preparing search index...

    Variable LevelSuffixConst

    LevelSuffix: { NOTHING: "nothing"; SPACE: "space"; TAB: "tab" } = ...

    Suffix types for list levels.

    Defines what follows the numbering text (tab, space, or nothing).

    Type Declaration

    • ReadonlyNOTHING: "nothing"

      No separator after the numbering.

    • ReadonlySPACE: "space"

      Space character after the numbering.

    • ReadonlyTAB: "tab"

      Tab character after the numbering.

    // Add a tab after the numbering
    suffix: LevelSuffix.TAB

    // Add a space after the numbering
    suffix: LevelSuffix.SPACE

    // No separator after the numbering
    suffix: LevelSuffix.NOTHING