From 96f9d19461f57816656abd5629532bc1029b097d Mon Sep 17 00:00:00 2001 From: Kenny Daniel Date: Wed, 26 Nov 2025 09:49:47 -0800 Subject: [PATCH] Remove LogicalTypeType --- src/index.js | 1 - src/types.d.ts | 2 -- 2 files changed, 3 deletions(-) diff --git a/src/index.js b/src/index.js index 9752d3a..b507c8c 100644 --- a/src/index.js +++ b/src/index.js @@ -23,7 +23,6 @@ export { asyncBufferFromUrl, byteLengthFromUrl, cachedAsyncBuffer, flatten, toJs * @typedef {import('../src/types.d.ts').ConvertedType} ConvertedType * @typedef {import('../src/types.d.ts').TimeUnit} TimeUnit * @typedef {import('../src/types.d.ts').LogicalType} LogicalType - * @typedef {import('../src/types.d.ts').LogicalTypeType} LogicalTypeType * @typedef {import('../src/types.d.ts').RowGroup} RowGroup * @typedef {import('../src/types.d.ts').ColumnChunk} ColumnChunk * @typedef {import('../src/types.d.ts').ColumnMetaData} ColumnMetaData diff --git a/src/types.d.ts b/src/types.d.ts index 9c3a506..e024419 100644 --- a/src/types.d.ts +++ b/src/types.d.ts @@ -195,8 +195,6 @@ export type LogicalType = | { type: 'GEOMETRY', crs?: string } | { type: 'GEOGRAPHY', crs?: string, algorithm?: EdgeInterpolationAlgorithm } -export type LogicalTypeType = LogicalType['type'] - export interface RowGroup { columns: ColumnChunk[] total_byte_size: bigint