mirror of
https://github.com/elastic/kibana.git
synced 2025-06-28 03:01:21 -04:00
2 KiB
2 KiB
Home > kibana-plugin-plugins-expressions-server > IInterpreterRenderHandlers
IInterpreterRenderHandlers interface
Signature:
export interface IInterpreterRenderHandlers
Properties
Property | Type | Description |
---|---|---|
done | () => void |
Done increments the number of rendering successes |
event | (event: any) => void |
|
getRenderMode | () => RenderMode |
|
hasCompatibleActions | (event: any) => Promise<boolean> |
|
isSyncColorsEnabled | () => boolean |
|
onDestroy | (fn: () => void) => void |
|
reload | () => void |
|
uiState | unknown |
This uiState interface is actually PersistedState from the visualizations plugin, but expressions cannot know about vis or it creates a mess of circular dependencies. Downstream consumers of the uiState handler will need to cast for now. |
update | (params: any) => void |