Skip to content

Commit

Permalink
fix circular ts reference?
Browse files Browse the repository at this point in the history
  • Loading branch information
jloleysens committed Jan 16, 2023
1 parent ba0b44c commit 7695107
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Side Public License, v 1.
*/

import * as serverTypes from '@kbn/core-saved-objects-server';
import * as serverTypes from './will_move_to_server';

/**
* Information about the migrations that have been applied to this SavedObject.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,7 @@
* Side Public License, v 1.
*/

import type {
SavedObjectsMigrationVersion,
SavedObjectError,
} from '@kbn/core-saved-objects-common';
import type { SavedObjectsMigrationVersion, SavedObjectError } from './saved_objects';

/**
* Don't use this type, it's simply a helper type for {@link SavedObjectAttribute}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,5 @@
],
"exclude": [
"target/**/*",
],
"kbn_references": [
"@kbn/core-saved-objects-server",
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,10 @@ export {
SECURITY_EXTENSION_ID,
SPACES_EXTENSION_ID,
} from './src/extensions/extensions';

export type {
SavedObject,
SavedObjectAttribute,
SavedObjectAttributeSingle,
SavedObjectAttributes,
SavedObjectReference,
} from './src/saved_objects';
} from '@kbn/core-saved-objects-common/src/will_move_to_server';

0 comments on commit 7695107

Please sign in to comment.