mirror of
https://github.com/elastic/kibana.git
synced 2025-06-28 11:05:39 -04:00
15 lines
725 B
Markdown
15 lines
725 B
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
[Home](./index.md) > [kibana-plugin-plugins-expressions-public](./kibana-plugin-plugins-expressions-public.md) > [ExecutionState](./kibana-plugin-plugins-expressions-public.executionstate.md) > [state](./kibana-plugin-plugins-expressions-public.executionstate.state.md)
|
|
|
|
## ExecutionState.state property
|
|
|
|
Tracks state of execution.
|
|
|
|
- `not-started` - before .start() method was called. - `pending` - immediately after .start() method is called. - `result` - when expression execution completed. - `error` - when execution failed with error.
|
|
|
|
<b>Signature:</b>
|
|
|
|
```typescript
|
|
state: 'not-started' | 'pending' | 'result' | 'error';
|
|
```
|