Do Observable too

Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
Fredrik Adelöw
2021-10-22 16:11:23 +02:00
parent 56f182dde2
commit 10615525f3
33 changed files with 76 additions and 36 deletions
@@ -14,7 +14,8 @@
* limitations under the License.
*/
import { ErrorApi, ErrorContext, Observable } from '@backstage/core-plugin-api';
import { ErrorApi, ErrorContext } from '@backstage/core-plugin-api';
import { Observable } from '@backstage/types';
type Options = {
collect?: boolean;
@@ -14,11 +14,8 @@
* limitations under the License.
*/
import {
Observable,
StorageApi,
StorageValueChange,
} from '@backstage/core-plugin-api';
import { StorageApi, StorageValueChange } from '@backstage/core-plugin-api';
import { Observable } from '@backstage/types';
import ObservableImpl from 'zen-observable';
export type MockStorageBucket = { [key: string]: any };