cant export this for some reason

This commit is contained in:
Bruno Windels 2022-03-01 15:48:42 +01:00
parent 42141c7063
commit 643ab1a5f3
2 changed files with 1 additions and 2 deletions

View File

@ -48,7 +48,6 @@ export {
} from "./observable/index";
export {
BaseObservableValue,
IWaitHandle,
ObservableValue,
RetainedObservableValue
} from "./observable/ObservableValue";

View File

@ -41,7 +41,7 @@ export abstract class BaseObservableValue<T> extends BaseObservable<(value: T) =
}
}
export interface IWaitHandle<T> {
interface IWaitHandle<T> {
promise: Promise<T>;
dispose(): void;
}