prorm API Reference
    Preparing search index...

    Type Alias WindowFrameBoundary

    WindowFrameBoundary:
        | "unboundedPreceding"
        | "unboundedFollowing"
        | "currentRow"
        | { preceding: number }
        | { following: number }

    A frame boundary for ROWS/RANGE clauses.

    • 'unboundedPreceding' -> UNBOUNDED PRECEDING
    • 'unboundedFollowing' -> UNBOUNDED FOLLOWING
    • 'currentRow' -> CURRENT ROW
    • { preceding: n } -> n PRECEDING
    • { following: n } -> n FOLLOWING