Fix min/max type definition

This commit is contained in:
Kenny Daniel 2024-05-02 17:29:39 -07:00
parent bded3fb331
commit f411b83f5e
No known key found for this signature in database
GPG Key ID: 90AB653A8CAD7E45

4
src/types.d.ts vendored

@ -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
}