"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.UI_SETTINGS_CSV_SEPARATOR = exports.UI_SETTINGS_CSV_QUOTE_VALUES = exports.CSV_BOM_CHARS = exports.CONTENT_TYPE_CSV = void 0; /* * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the Elastic License * 2.0 and the Server Side Public License, v 1; you may not use this file except * in compliance with, at your election, the Elastic License 2.0 or the Server * Side Public License, v 1. */ const CSV_BOM_CHARS = '\ufeff'; exports.CSV_BOM_CHARS = CSV_BOM_CHARS; const CONTENT_TYPE_CSV = 'text/csv'; exports.CONTENT_TYPE_CSV = CONTENT_TYPE_CSV; const UI_SETTINGS_CSV_SEPARATOR = 'csv:separator'; exports.UI_SETTINGS_CSV_SEPARATOR = UI_SETTINGS_CSV_SEPARATOR; const UI_SETTINGS_CSV_QUOTE_VALUES = 'csv:quoteValues'; exports.UI_SETTINGS_CSV_QUOTE_VALUES = UI_SETTINGS_CSV_QUOTE_VALUES;