1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-09-10 17:53:36 +02:00

Merge remote-tracking branch 'origin/proposal/handle-aggregation-queries-sequentially' into proposal/handle-aggregation-queries-sequentially

This commit is contained in:
Gastón Fournier 2024-10-15 10:44:26 +02:00
commit d785730087
No known key found for this signature in database
GPG Key ID: AF45428626E17A8E

View File

@ -1,6 +1,6 @@
import { createGauge, type Gauge } from './util/metrics';
type RestrictedRecord<T extends string[]> = Record<T[number], string>;
type RestrictedRecord<T extends readonly string[]> = Record<T[number], string>;
type Query<R> = () => Promise<R | undefined | null>;
type MapResult<R> = (result: R) => {
count: number;