UNPKG

@mini-rx/signal-store

Version:
12 lines (11 loc) 455 B
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ import { Signal } from '@angular/core'; import { ToObservableOptions } from '@angular/core/rxjs-interop'; import { Observable } from 'rxjs'; export declare function miniRxToObservable<T>(source: Signal<T>, options?: ToObservableOptions): Observable<T>;