Type alias PValue<T>

PValue<T>: void | Root | PCollection<T> | PValue<T>[] | {
    [key: string]: PValue<T>;
}

The type of object that may be consumed or produced by a PTransform.

Type Parameters

  • T

Generated using TypeDoc