mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
Before EuiInMemoryTable had TypeScript support we used our own typings and some state & CSS fixes. This is now all solved by the original EUI component. - Use EuiInMemoryTable instead of custom typed table. - Deletes some legacy leftover files.
31 lines
1.1 KiB
TypeScript
31 lines
1.1 KiB
TypeScript
/*
|
|
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
* or more contributor license agreements. Licensed under the Elastic License;
|
|
* you may not use this file except in compliance with the Elastic License.
|
|
*/
|
|
|
|
export { createSavedSearchesLoader } from '../../../../src/plugins/discover/public';
|
|
export { XJsonMode } from '../../es_ui_shared/console_lang/ace/modes/x_json';
|
|
export {
|
|
collapseLiteralStrings,
|
|
expandLiteralStrings,
|
|
} from '../../../../src/plugins/es_ui_shared/console_lang/lib';
|
|
|
|
export {
|
|
SendRequestConfig,
|
|
SendRequestResponse,
|
|
UseRequestConfig,
|
|
sendRequest,
|
|
useRequest,
|
|
} from '../../../../src/plugins/es_ui_shared/public/request/np_ready_request';
|
|
|
|
export {
|
|
CronEditor,
|
|
DAY,
|
|
} from '../../../../src/plugins/es_ui_shared/public/components/cron_editor';
|
|
|
|
// Needs to be imported because we're reusing KqlFilterBar which depends on it.
|
|
export { setDependencyCache } from '../../../legacy/plugins/ml/public/application/util/dependency_cache';
|
|
|
|
// @ts-ignore: could not find declaration file for module
|
|
export { KqlFilterBar } from '../../../legacy/plugins/ml/public/application/components/kql_filter_bar';
|