Remove LogicalTypeType

This commit is contained in:
Kenny Daniel 2025-11-26 09:49:47 -08:00
parent bccd258520
commit 96f9d19461
No known key found for this signature in database
GPG Key ID: 90AB653A8CAD7E45
2 changed files with 0 additions and 3 deletions

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

2
src/types.d.ts vendored

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