mwbot-ts - v1.2.7
    Preparing search index...

    Interface ParsedTemplateProps<CLS>

    interface ParsedTemplateProps<CLS> {
        children: Set<number>;
        endIndex: number;
        index: number;
        nestLevel: number;
        parent: null | number;
        skip: boolean;
        startIndex: number;
        text: string;
    }

    Type Parameters

    • CLS

    Hierarchy (View Summary)

    Index

    Properties

    children: Set<number>

    The indices of the child objects within the parseTemplates result array.

    endIndex: number

    The ending index of this double-braced markup in the wikitext (exclusive).

    index: number

    The index of this object within the result array returned by parseTemplates.

    nestLevel: number

    The nesting level of this double-braced markup. 0 if not nested within another double-braced expression.

    parent: null | number

    The index of the parent object within the parseTemplates result array, or null if there is no parent.

    skip: boolean

    Whether the double-braced markup appears inside an HTML tag specified in SkipTags.

    startIndex: number

    The starting index of this double-braced markup in the wikitext.

    text: string

    The original text of the double-braced markup parsed from the wikitext. The value of this property is static.