@jsfkit/types
    Preparing search index...

    Type Alias TableColumn

    Describes a column within a table.

    type TableColumn = {
        dataType?: TableColumnDataType;
        formula?: string;
        name: string;
    }
    Index

    Properties

    Describes the type of values found in the cells of the column, when a column contains only one data type.

    "unknown"
    
    formula?: string

    If the column is a calculated column, then this field must include the formula used.

    name: string

    The column name. It must be unique among column names in the same table when compared in a case-insensitive manner. Must be non-empty. May contain white-space characters but not exclusively.