Interface IExportOptions

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

Properties

filter: ((col) => boolean)

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

Type declaration

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

      Parameters

      • col: Column

        the column description to filter

      Returns boolean

Param: col

the column description to filter

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