flatgeobuf
Version:
A performant binary encoding for geographic data
14 lines (13 loc) • 325 B
TypeScript
import type { ColumnType } from './flat-geobuf/column-type.js';
export interface ColumnMeta {
name: string;
type: ColumnType;
title: string | null;
description: string | null;
width: number;
precision: number;
scale: number;
nullable: boolean;
unique: boolean;
primary_key: boolean;
}