"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.fatalErrors = void 0; exports.init = init; exports.toasts = 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. */ /** * TODO: * IMPORTANT: Please see how {@link BreadcrumbService} is set up for an example of how these services should be set up * in future. The pattern in this file is legacy and should be updated to conform to the plugin lifecycle. */ let toasts; exports.toasts = toasts; let fatalErrors; exports.fatalErrors = fatalErrors; function init(_toasts, _fatalErrors) { exports.toasts = toasts = _toasts; exports.fatalErrors = fatalErrors = _fatalErrors; }