mirror of
https://github.com/elastic/kibana.git
synced 2025-06-27 18:51:07 -04:00
[Expressions] Create expressions function to get UI settings (#101317)
This commit is contained in:
parent
49ea272240
commit
bde81c2090
26 changed files with 560 additions and 54 deletions
|
@ -70,7 +70,7 @@ The actual function is defined in the <code>fn</code> key. The function can be \
|
|||
|
||||
| Method | Modifiers | Description |
|
||||
| --- | --- | --- |
|
||||
| [setup()](./kibana-plugin-plugins-expressions-public.expressionsservice.setup.md) | | Returns Kibana Platform \*setup\* life-cycle contract. Useful to return the same contract on server-side and browser-side. |
|
||||
| [start()](./kibana-plugin-plugins-expressions-public.expressionsservice.start.md) | | Returns Kibana Platform \*start\* life-cycle contract. Useful to return the same contract on server-side and browser-side. |
|
||||
| [setup(args)](./kibana-plugin-plugins-expressions-public.expressionsservice.setup.md) | | Returns Kibana Platform \*setup\* life-cycle contract. Useful to return the same contract on server-side and browser-side. |
|
||||
| [start(args)](./kibana-plugin-plugins-expressions-public.expressionsservice.start.md) | | Returns Kibana Platform \*start\* life-cycle contract. Useful to return the same contract on server-side and browser-side. |
|
||||
| [stop()](./kibana-plugin-plugins-expressions-public.expressionsservice.stop.md) | | |
|
||||
|
||||
|
|
|
@ -9,8 +9,15 @@ Returns Kibana Platform \*setup\* life-cycle contract. Useful to return the same
|
|||
<b>Signature:</b>
|
||||
|
||||
```typescript
|
||||
setup(): ExpressionsServiceSetup;
|
||||
setup(...args: unknown[]): ExpressionsServiceSetup;
|
||||
```
|
||||
|
||||
## Parameters
|
||||
|
||||
| Parameter | Type | Description |
|
||||
| --- | --- | --- |
|
||||
| args | <code>unknown[]</code> | |
|
||||
|
||||
<b>Returns:</b>
|
||||
|
||||
`ExpressionsServiceSetup`
|
||||
|
|
|
@ -9,8 +9,15 @@ Returns Kibana Platform \*start\* life-cycle contract. Useful to return the same
|
|||
<b>Signature:</b>
|
||||
|
||||
```typescript
|
||||
start(): ExpressionsServiceStart;
|
||||
start(...args: unknown[]): ExpressionsServiceStart;
|
||||
```
|
||||
|
||||
## Parameters
|
||||
|
||||
| Parameter | Type | Description |
|
||||
| --- | --- | --- |
|
||||
| args | <code>unknown[]</code> | |
|
||||
|
||||
<b>Returns:</b>
|
||||
|
||||
`ExpressionsServiceStart`
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue