Skip to content

Commit

Permalink
updating api docs
Browse files Browse the repository at this point in the history
  • Loading branch information
legrego committed Jun 20, 2019
1 parent fd91f37 commit 739cd86
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ Saved Objects Namespace.
<b>Signature:</b>

```typescript
export declare type SavedObjectsNamespace = string | undefined;
export declare type SavedObjectsNamespace = string | undefined | symbol;
```
6 changes: 2 additions & 4 deletions src/core/server/server.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ import { Observable } from 'rxjs';
import { Request } from 'hapi';
import { ResponseObject } from 'hapi';
import { ResponseToolkit } from 'hapi';
import { SavedObjectsNamespace as SavedObjectsNamespace_2 } from 'src/core/server';
import { SavedObjectsNamespace as SavedObjectsNamespace_3 } from 'src/core/server/saved_objects';
import { Schema } from '@kbn/config-schema';
import { Server } from 'hapi';
import { Type } from '@kbn/config-schema';
Expand Down Expand Up @@ -439,7 +437,7 @@ export interface SavedObjectReference {

// @public (undocumented)
export interface SavedObjectsBaseOptions {
namespace?: SavedObjectsNamespace_2;
namespace?: SavedObjectsNamespace;
}

// @public (undocumented)
Expand Down Expand Up @@ -619,7 +617,7 @@ export interface SavedObjectsMigrationVersion {
}

// @public
export type SavedObjectsNamespace = string | undefined;
export type SavedObjectsNamespace = string | undefined | symbol;

// @public (undocumented)
export interface SavedObjectsService<Request = any> {
Expand Down

0 comments on commit 739cd86

Please sign in to comment.