forked from elastic/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ML] Fixes display of matching modules in index data visualizer (elas…
…tic#45261) * [ML] Fixes display of matching modules in index data visualizer * [ML] Update following review on adding recognizer check
- Loading branch information
1 parent
555dc8b
commit 467ed92
Showing
3 changed files
with
48 additions
and
4 deletions.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
x-pack/legacy/plugins/ml/public/components/data_recognizer/data_recognizer.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* | ||
* 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. | ||
*/ | ||
|
||
import { FC } from 'react'; | ||
|
||
import { IndexPattern } from 'ui/index_patterns'; | ||
|
||
declare const DataRecognizer: FC<{ | ||
indexPattern: IndexPattern; | ||
results: any; | ||
className: string; | ||
}>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters