geopackage-ts
    Preparing search index...

    Interface TableDefinition

    Describes the complete schema for a new GeoPackage user data table.

    This interface pairs a table name with an ordered list of column definitions and is used by the table creation utilities to generate CREATE TABLE DDL.

    interface TableDefinition {
        columns: ColumnDefinition[];
        tableName: string;
    }
    Index

    Properties

    Properties

    columns: ColumnDefinition[]

    Ordered list of column definitions for the table.

    tableName: string

    The name of the table to create in the GeoPackage database.