Interface TwingSandboxNode

interface TwingSandboxNode {
    attributes: TwingBaseNodeAttributes;
    children: {
        body: TwingBaseNode<any, TwingBaseNodeAttributes, TwingBaseNodeChildren>;
    };
    column: number;
    line: number;
    tag: null | string;
    type: "sandbox";
}

Hierarchy (view full)

Properties

children: {
    body: TwingBaseNode<any, TwingBaseNodeAttributes, TwingBaseNodeChildren>;
}
column: number
line: number
tag: null | string
type: "sandbox"