Documentation
    Preparing search index...

    Interface TwingDoNode

    Represents a do node.

    The do tag works exactly like the regular variable expression ({{ ... }}) just that it doesn't print anything: {% do 1 + 2 %}

    interface TwingDoNode {
        attributes: Attributes;
        children: { body: TwingBaseExpressionNode };
        column: number;
        line: number;
        tag: null | string;
        type: "do";
    }

    Hierarchy (View Summary)

    Index

    Properties

    attributes: Attributes
    children: { body: TwingBaseExpressionNode }
    column: number
    line: number
    tag: null | string
    type: "do"