@internal
(opts: { partitionBy: string; limit: number; offset?: number })
| 2056 | |
| 2057 | /** @internal */ |
| 2058 | setPartitionLimit(opts: { partitionBy: string; limit: number; offset?: number }): this { |
| 2059 | this.ensureNotFinalized(); |
| 2060 | this.#state.partitionLimit = opts; |
| 2061 | return this; |
| 2062 | } |
| 2063 | |
| 2064 | cache(config: boolean | number | [string, number] = true): this { |
| 2065 | this.ensureNotFinalized(); |
no test coverage detected