"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.EMPTY_INDEX_FIELDS = exports.EMPTY_BROWSER_FIELDS = 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; you may not use this file except in compliance with the Elastic License * 2.0. */ /** * @deprecated use EcsFlat from @kbn/ecs or kibana data views api */ /** * @deprecated use kibana data views api https://github.com/elastic/kibana/blob/83f1fb4f26219f32cab43706db78d544c7bc2f6d/src/plugins/data_views/common/data_views/data_views.ts#L294 */ /** * @deprecated use kibana data views api https://github.com/elastic/kibana/blob/83f1fb4f26219f32cab43706db78d544c7bc2f6d/src/plugins/data_views/common/data_views/data_views.ts#L294 */ /** * @deprecated use fields list on dataview / "indexPattern" * about to use browserFields? Reconsider! Maybe you can accomplish * everything you need via the `fields` property on the data view * you are working with? Or perhaps you need a description for a * particular field? Consider using the EcsFlat module from `@kbn/ecs` */ /** * @deprecated use fields list on dataview / "indexPattern" * about to use browserFields? Reconsider! Maybe you can accomplish * everything you need via the `fields` property on the data view * you are working with? Or perhaps you need a description for a * particular field? Consider using the EcsFlat module from `@kbn/ecs` */ const EMPTY_BROWSER_FIELDS = {}; exports.EMPTY_BROWSER_FIELDS = EMPTY_BROWSER_FIELDS; const EMPTY_INDEX_FIELDS = []; exports.EMPTY_INDEX_FIELDS = EMPTY_INDEX_FIELDS;