Circle V2 API Docs
    Preparing search index...

    Type Alias ExportColumn<Row>

    Describes one output column: its header and how to derive its cell value from a row.

    type ExportColumn<Row> = {
        header: string;
        value: (row: Row) => ExportCellValue;
        width?: number;
    }

    Type Parameters

    • Row
    Index

    Properties

    Properties

    header: string

    Header text shown in the first (frozen) row.

    value: (row: Row) => ExportCellValue

    Extracts this column's value from a row.

    width?: number

    Optional column width, in Excel character units. Ignored by CSV.