interface InputDeclaration {
    end: number;
    keyword: Syntax<".input">;
    start: number;
    type: "input";
    value: Junk | CST.Expression;
}

Properties

end: number
keyword: Syntax<".input">
start: number
type: "input"