import * as AST from "../ast"; export class Alias { public object: AST.Expr | AST.Statement; public name: AST.Identifier | AST.Backtick; constructor(object: AST.Expr | AST.Statement, name: AST.Identifier | AST.Backtick) { this.object = object; this.name = name; } }