mwg API
    Preparing search index...

    Interface CsvOptions

    interface CsvOptions {
        columns?: Record<string, CsvColumnType>;
        listDelimiter?: string;
        mapDelimiter?: string;
    }
    Index
    columns?: Record<string, CsvColumnType>

    how to interpret each named column beyond a plain string; an undeclared column stays one

    listDelimiter?: string

    splits a 'list'/'map' column's cell into individual entries; default ;

    mapDelimiter?: string

    splits a 'map' entry into its key and value; default =