kibana/packages/kbn-text-based-editor/index.ts
Alexi Doak 5f00ae97dd
[ResponseOps][Alerting] ESQL alerting rule type ( pointed at main) (#165480)
Resolves https://github.com/elastic/kibana/issues/153448

## Summary

The same as this [pr](https://github.com/elastic/kibana/pull/164073),
but just points at main

---------

Co-authored-by: Stratoula Kalafateli <efstratia.kalafateli@elastic.co>
Co-authored-by: Alexey Antonov <alexwizp@gmail.com>
Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
Co-authored-by: Abdon Pijpelink <abdon.pijpelink@elastic.co>
Co-authored-by: gchaps <33642766+gchaps@users.noreply.github.com>
Co-authored-by: Peter Pisljar <peter.pisljar@elastic.co>
Co-authored-by: Marco Liberati <dej611@users.noreply.github.com>
2023-09-05 06:59:52 -07:00

15 lines
706 B
TypeScript

/*
* 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 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/
export type { TextBasedLanguagesEditorProps } from './src/text_based_languages_editor';
export { fetchFieldsFromESQL } from './src/fetch_fields_from_esql';
import { TextBasedLanguagesEditor } from './src/text_based_languages_editor';
// React.lazy support
// eslint-disable-next-line import/no-default-export
export default TextBasedLanguagesEditor;