Skip to content

Commit

Permalink
updating docs
Browse files Browse the repository at this point in the history
  • Loading branch information
ppisljar committed Jul 5, 2021
1 parent 57ff3c8 commit aa648ec
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 13 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export interface EmbeddableSetup extends PersistableStateService<EmbeddableState
| Property | Type | Description |
| --- | --- | --- |
| [getMigrationVersions](./kibana-plugin-plugins-embeddable-server.embeddablesetup.getmigrationversions.md) | <code>() =&gt; string[]</code> | |
| [getAllMigrations](./kibana-plugin-plugins-embeddable-server.embeddablesetup.getallmigrations.md) | <code>() =&gt; MigrateFunctionsObject</code> | |
| [registerEmbeddableFactory](./kibana-plugin-plugins-embeddable-server.embeddablesetup.registerembeddablefactory.md) | <code>(factory: EmbeddableRegistryDefinition) =&gt; void</code> | |
| [registerEnhancement](./kibana-plugin-plugins-embeddable-server.embeddablesetup.registerenhancement.md) | <code>(enhancement: EnhancementRegistryDefinition) =&gt; void</code> | |
4 changes: 3 additions & 1 deletion src/plugins/embeddable/server/server.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,10 @@ export interface EmbeddableRegistryDefinition<P extends EmbeddableStateWithType
//
// @public (undocumented)
export interface EmbeddableSetup extends PersistableStateService<EmbeddableStateWithType> {
// Warning: (ae-forgotten-export) The symbol "MigrateFunctionsObject" needs to be exported by the entry point index.d.ts
//
// (undocumented)
getMigrationVersions: () => string[];
getAllMigrations: () => MigrateFunctionsObject;
// (undocumented)
registerEmbeddableFactory: (factory: EmbeddableRegistryDefinition) => void;
// (undocumented)
Expand Down

0 comments on commit aa648ec

Please sign in to comment.