Interface TwingBlockFunctionNode

interface TwingBlockFunctionNode {
    attributes: TwingBaseNodeAttributes & {
        shouldTestExistence: boolean;
    };
    children: TwingBlockFunctionNodeChildren;
    column: number;
    line: number;
    tag: null | string;
    type: "block_function";
}

Hierarchy (view full)

Properties

attributes: TwingBaseNodeAttributes & {
    shouldTestExistence: boolean;
}
column: number
line: number
tag: null | string
type: "block_function"