kibana/x-pack/plugins/canvas/tasks/mocks/uiNotify.js

19 lines
477 B
JavaScript
Raw Normal View History

/*
* 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.
*/
2018-09-08 01:58:47 +02:00
const notifierProto = {
2020-05-22 09:08:58 +02:00
error: (msg) => `error: ${msg}`,
warning: (msg) => `warning: ${msg}`,
info: (msg) => `info: ${msg}`,
2018-09-08 01:58:47 +02:00
};
export class Notifier {
constructor() {
Object.assign(this, notifierProto);
}
}