Skip to content

Commit

Permalink
docs updated.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kuznietsov committed Jun 22, 2021
1 parent 7c95c90 commit 9772182
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export interface IInterpreterRenderHandlers
| [getRenderMode](./kibana-plugin-plugins-expressions-public.iinterpreterrenderhandlers.getrendermode.md) | <code>() =&gt; RenderMode</code> | |
| [hasCompatibleActions](./kibana-plugin-plugins-expressions-public.iinterpreterrenderhandlers.hascompatibleactions.md) | <code>(event: any) =&gt; Promise&lt;boolean&gt;</code> | |
| [isSyncColorsEnabled](./kibana-plugin-plugins-expressions-public.iinterpreterrenderhandlers.issynccolorsenabled.md) | <code>() =&gt; boolean</code> | |
| [on](./kibana-plugin-plugins-expressions-public.iinterpreterrenderhandlers.on.md) | <code>(event: any, fn: (...args: any) =&gt; void) =&gt; void</code> | |
| [on](./kibana-plugin-plugins-expressions-public.iinterpreterrenderhandlers.on.md) | <code>(this: any, event: any, fn: (...args: any) =&gt; void) =&gt; void</code> | |
| [onDestroy](./kibana-plugin-plugins-expressions-public.iinterpreterrenderhandlers.ondestroy.md) | <code>(fn: () =&gt; void) =&gt; void</code> | |
| [reload](./kibana-plugin-plugins-expressions-public.iinterpreterrenderhandlers.reload.md) | <code>() =&gt; void</code> | |
| [uiState](./kibana-plugin-plugins-expressions-public.iinterpreterrenderhandlers.uistate.md) | <code>unknown</code> | This uiState interface is actually <code>PersistedState</code> 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. |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
<b>Signature:</b>

```typescript
on: (event: any, fn: (...args: any) => void) => void;
on: (this: any, event: any, fn: (...args: any) => void) => void;
```
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export interface IInterpreterRenderHandlers
| [getRenderMode](./kibana-plugin-plugins-expressions-server.iinterpreterrenderhandlers.getrendermode.md) | <code>() =&gt; RenderMode</code> | |
| [hasCompatibleActions](./kibana-plugin-plugins-expressions-server.iinterpreterrenderhandlers.hascompatibleactions.md) | <code>(event: any) =&gt; Promise&lt;boolean&gt;</code> | |
| [isSyncColorsEnabled](./kibana-plugin-plugins-expressions-server.iinterpreterrenderhandlers.issynccolorsenabled.md) | <code>() =&gt; boolean</code> | |
| [on](./kibana-plugin-plugins-expressions-server.iinterpreterrenderhandlers.on.md) | <code>(event: any, fn: (...args: any) =&gt; void) =&gt; void</code> | |
| [on](./kibana-plugin-plugins-expressions-server.iinterpreterrenderhandlers.on.md) | <code>(this: any, event: any, fn: (...args: any) =&gt; void) =&gt; void</code> | |
| [onDestroy](./kibana-plugin-plugins-expressions-server.iinterpreterrenderhandlers.ondestroy.md) | <code>(fn: () =&gt; void) =&gt; void</code> | |
| [reload](./kibana-plugin-plugins-expressions-server.iinterpreterrenderhandlers.reload.md) | <code>() =&gt; void</code> | |
| [uiState](./kibana-plugin-plugins-expressions-server.iinterpreterrenderhandlers.uistate.md) | <code>unknown</code> | This uiState interface is actually <code>PersistedState</code> 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. |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
<b>Signature:</b>

```typescript
on: (event: any, fn: (...args: any) => void) => void;
on: (this: any, event: any, fn: (...args: any) => void) => void;
```
2 changes: 1 addition & 1 deletion src/plugins/expressions/public/public.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -937,7 +937,7 @@ export interface IInterpreterRenderHandlers {
// (undocumented)
isSyncColorsEnabled: () => boolean;
// (undocumented)
on: (event: any, fn: (...args: any) => void) => void;
on: (this: any, event: any, fn: (...args: any) => void) => void;
// (undocumented)
onDestroy: (fn: () => void) => void;
// (undocumented)
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/expressions/server/server.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -742,7 +742,7 @@ export interface IInterpreterRenderHandlers {
// (undocumented)
isSyncColorsEnabled: () => boolean;
// (undocumented)
on: (event: any, fn: (...args: any) => void) => void;
on: (this: any, event: any, fn: (...args: any) => void) => void;
// (undocumented)
onDestroy: (fn: () => void) => void;
// (undocumented)
Expand Down

0 comments on commit 9772182

Please sign in to comment.