Interface TwingParentFunctionNode

interface TwingParentFunctionNode {
    attributes: TwingBaseNodeAttributes & {
        name: string;
    };
    children: TwingBaseNodeChildren;
    column: number;
    line: number;
    tag: null | string;
    type: "parent_function";
}

Hierarchy (view full)

Properties

attributes: TwingBaseNodeAttributes & {
    name: string;
}
column: number
line: number
tag: null | string
type: "parent_function"