export type Observer<T> = (newValue: T) => void;
export type UnbindObserver = () => void;
