TabScript - v2.0.2
    Preparing search index...

    Interface ParseGroupOpts

    Options for parsing delimited or indented groups. Used by s.parseGroup() to handle blocks like {...}, [...], or indented blocks.

    interface ParseGroupOpts {
        allowImplicit?: boolean;
        close?: string;
        endNext?: false;
        jsClose?: string;
        jsNext?: string;
        jsOpen?: string;
        next?: string;
        open?: string;
    }
    Index

    Properties

    allowImplicit?: boolean

    Allow implicit block via indentation (no explicit open/close)

    close?: string

    Closing delimiter in input (e.g., '}', ']', '|')

    endNext?: false

    If false, don't emit separator after last item

    jsClose?: string

    Closing delimiter in output (null to suppress)

    jsNext?: string

    Item separator in output (null to suppress)

    jsOpen?: string

    Opening delimiter in output (null to suppress)

    next?: string

    Item separator in input (e.g., ',', ';')

    open?: string

    Opening delimiter in input (e.g., '{', '[', '|')