Circle V2 API Docs
    Preparing search index...

    Type Alias ExportInput<Row>

    Input to the writers: the columns, the rows, and an optional worksheet name.

    type ExportInput<Row> = {
        columns: ExportColumn<Row>[];
        rows: Row[];
        sheetName?: string;
    }

    Type Parameters

    • Row
    Index

    Properties

    columns: ExportColumn<Row>[]
    rows: Row[]
    sheetName?: string

    Worksheet name (XLSX only). Defaults to "Sheet1".