"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.RuntimeFieldsPlugin = void 0; var _load_editor = require("./load_editor"); /* * 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. */ class RuntimeFieldsPlugin { setup(core, plugins) { return { loadEditor: (0, _load_editor.getRuntimeFieldEditorLoader)(core) }; } start(core, plugins) { return {}; } stop() { return {}; } } exports.RuntimeFieldsPlugin = RuntimeFieldsPlugin;