From f411b83f5e3c22d1820d1f073c8555ea02f38201 Mon Sep 17 00:00:00 2001 From: Kenny Daniel Date: Thu, 2 May 2024 17:29:39 -0700 Subject: [PATCH] Fix min/max type definition --- src/types.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/types.d.ts b/src/types.d.ts index 64f337b..45f7f36 100644 --- a/src/types.d.ts +++ b/src/types.d.ts @@ -176,8 +176,8 @@ interface KeyValue { } export interface Statistics { - max?: Uint8Array // binary representation - min?: Uint8Array // binary representation + max?: string + min?: string null_count?: number distinct_count?: number }