Interface TwingImportNode

interface TwingImportNode {
    attributes: TwingImportNodeAttributes;
    children: {
        alias: TwingAssignmentNode;
        templateName: TwingBaseExpressionNode;
    };
    column: number;
    line: number;
    tag: null | string;
    type: "import";
}

Hierarchy (view full)

Properties

children: {
    alias: TwingAssignmentNode;
    templateName: TwingBaseExpressionNode;
}
column: number
line: number
tag: null | string
type: "import"