Interface ExprConstructor

interface ExprConstructor {
    deserialize(buf, format): pl.Expr;
    isExpr(arg): arg is pl.Expr;
}

Hierarchy

  • Deserialize<pl.Expr>
    • ExprConstructor

Methods