Interface IExportOptions

interface IExportOptions {
    filter: (col: Column) => boolean;
    header: boolean;
    newline: string;
    quote: boolean;
    quoteChar: string;
    separator: string;
    verboseColumnHeaders: boolean;
}

Properties

filter: (col: Column) => boolean

filter specific column types, default: exclude all support types (selection, action, rank)

Type declaration

    • (col: Column): boolean
    • Parameters

      • col: Column

        the column description to filter

      Returns boolean

header: boolean

should a header be generated, default: true

newline: string

new line character, default: '\n'

quote: boolean

quote strings, default: false

quoteChar: string

quote string to use, default: '"'

separator: string

export separator, default: '\t'

verboseColumnHeaders: boolean

whether the description should be part of the column header