"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.registerEmbeddables = registerEmbeddables; var _grid_embeddable_factory = require("./grid_embeddable/grid_embeddable_factory"); /* * 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. */ function registerEmbeddables(embeddable, core) { const dataVisualizerGridEmbeddableFactory = new _grid_embeddable_factory.DataVisualizerGridEmbeddableFactory(core.getStartServices); embeddable.registerEmbeddableFactory(dataVisualizerGridEmbeddableFactory.type, dataVisualizerGridEmbeddableFactory); }