interface IPivot {
    by: string | string[] | FieldKey;
    columns: (string | string[] | FieldKey)[];
}

Properties

Properties

by: string | string[] | FieldKey

The column to pivot by. Can be an array of strings, a string, or a FieldKey

columns: (string | string[] | FieldKey)[]

The columns to pivot. Is an array containing strings, arrays of strings, and/or FieldKey objects.

Generated using TypeDoc