Interface LazyDataFrameConstructor

interface LazyDataFrameConstructor {
    deserialize(buf: Buffer, format: "json" | "bincode"): LazyDataFrame;
    fromExternal(external: any): LazyDataFrame;
    isLazyDataFrame(arg: any): arg is LazyDataFrame;
}

Hierarchy

Methods