some more fixup

Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
Fredrik Adelöw
2021-10-21 16:36:41 +02:00
parent 7c5cf5a4a4
commit 66bcc31ec4
2 changed files with 3 additions and 6 deletions
-6
View File
@@ -683,13 +683,9 @@ export const oauthRequestApiRef: ApiRef<OAuthRequestApi>;
// @public
export type OAuthScope = string | string[];
// Warning: (ae-missing-release-tag) "Observable" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public @deprecated
export type Observable<T> = Observable_2<T>;
// Warning: (ae-missing-release-tag) "Observer" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public @deprecated
export type Observer<T> = Observer_2<T>;
@@ -897,8 +893,6 @@ export type SubRouteRef<Params extends AnyParams = any> = {
params: ParamKeys<Params>;
};
// Warning: (ae-missing-release-tag) "Subscription" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public @deprecated
export type Subscription = Subscription_2;
@@ -23,6 +23,7 @@ import {
/**
* Observer interface for consuming an Observer, see TC39.
*
* @public
* @deprecated Please use the same type from `@backstage/types` instead
*/
export type Observer<T> = CoreObserver<T>;
@@ -30,6 +31,7 @@ export type Observer<T> = CoreObserver<T>;
/**
* Subscription returned when subscribing to an Observable, see TC39.
*
* @public
* @deprecated Please use the same type from `@backstage/types` instead
*/
export type Subscription = CoreSubscription;
@@ -42,6 +44,7 @@ export type Subscription = CoreSubscription;
* This is used as a common return type for observable values and can be created
* using many different observable implementations, such as zen-observable or RxJS 5.
*
* @public
* @deprecated Please use the same type from `@backstage/types` instead
*/
export type Observable<T> = CoreObservable<T>;