mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
parent
79efaaa842
commit
f8563f8b27
27 changed files with 184 additions and 172 deletions
|
@ -8,6 +8,7 @@
|
|||
|
||||
```typescript
|
||||
actions: {
|
||||
createFiltersFromEvent: typeof createFiltersFromEvent;
|
||||
createFiltersFromValueClickAction: typeof createFiltersFromValueClickAction;
|
||||
createFiltersFromRangeSelectAction: typeof createFiltersFromRangeSelectAction;
|
||||
};
|
||||
```
|
||||
|
|
|
@ -14,7 +14,7 @@ export interface DataPublicPluginStart
|
|||
|
||||
| Property | Type | Description |
|
||||
| --- | --- | --- |
|
||||
| [actions](./kibana-plugin-plugins-data-public.datapublicpluginstart.actions.md) | <code>{</code><br/><code> createFiltersFromEvent: typeof createFiltersFromEvent;</code><br/><code> }</code> | |
|
||||
| [actions](./kibana-plugin-plugins-data-public.datapublicpluginstart.actions.md) | <code>{</code><br/><code> createFiltersFromValueClickAction: typeof createFiltersFromValueClickAction;</code><br/><code> createFiltersFromRangeSelectAction: typeof createFiltersFromRangeSelectAction;</code><br/><code> }</code> | |
|
||||
| [autocomplete](./kibana-plugin-plugins-data-public.datapublicpluginstart.autocomplete.md) | <code>AutocompleteStart</code> | |
|
||||
| [fieldFormats](./kibana-plugin-plugins-data-public.datapublicpluginstart.fieldformats.md) | <code>FieldFormatsStart</code> | |
|
||||
| [indexPatterns](./kibana-plugin-plugins-data-public.datapublicpluginstart.indexpatterns.md) | <code>IndexPatternsContract</code> | |
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
fieldFormats: {
|
||||
FieldFormat: typeof FieldFormat;
|
||||
FieldFormatsRegistry: typeof FieldFormatsRegistry;
|
||||
serialize: (agg: import("./search").AggConfig) => import("../../expressions/common").SerializedFieldFormat<object>;
|
||||
serialize: (agg: import("./search").AggConfig) => import("../../expressions").SerializedFieldFormat<object>;
|
||||
DEFAULT_CONVERTER_COLOR: {
|
||||
range: string;
|
||||
regex: string;
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
fieldFormats: {
|
||||
FieldFormatsRegistry: typeof FieldFormatsRegistry;
|
||||
FieldFormat: typeof FieldFormat;
|
||||
serializeFieldFormat: (agg: import("../public/search").AggConfig) => import("../../expressions/common").SerializedFieldFormat<object>;
|
||||
serializeFieldFormat: (agg: import("../public/search").AggConfig) => import("../../expressions").SerializedFieldFormat<object>;
|
||||
BoolFormat: typeof BoolFormat;
|
||||
BytesFormat: typeof BytesFormat;
|
||||
ColorFormat: typeof ColorFormat;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue