Interface SetWindowFieldsInput

interface SetWindowFieldsInput {
    output: Record<string, {
        window?: WindowOutputOption;
        [x: string]: AnyVal;
    }>;
    partitionBy?: unknown;
    sortBy: Record<string, -1 | 1>;
}

Properties

output: Record<string, {
    window?: WindowOutputOption;
    [x: string]: AnyVal;
}>

Type declaration

partitionBy?: unknown
sortBy: Record<string, -1 | 1>