@watzon/baserow
    Preparing search index...

    Interface CsvExporterOptions

    interface CsvExporterOptions {
        csvColumnSeparator?:
            | ","
            | ";"
            | "|"
            | "tab"
            | "recordSeparator"
            | "unitSeparator";
        csvIncludeHeader?: boolean;
        exportCharset?: ExportCharset;
        exporterType: "csv";
        fields?: null
        | number[];
        filters?: null | PublicViewFilters;
        orderBy?: null | string;
        viewId?: null | number;
    }

    Hierarchy

    • BaseExportOptions
      • CsvExporterOptions
    Index

    Properties

    csvColumnSeparator?:
        | ","
        | ";"
        | "|"
        | "tab"
        | "recordSeparator"
        | "unitSeparator"
    csvIncludeHeader?: boolean
    exportCharset?: ExportCharset
    exporterType: "csv"
    fields?: null | number[]
    filters?: null | PublicViewFilters
    orderBy?: null | string
    viewId?: null | number