Interface ExprConstructor

interface ExprConstructor {
    deserialize(buf: Buffer, format: "json" | "bincode"): pl.Expr;
    isExpr(arg: any): arg is pl.Expr;
}

Hierarchy

  • Deserialize<pl.Expr>
    • ExprConstructor

Methods