projects/core/src/model/scoped-data.ts
Used to envelope data observable together with specified scope
Properties |
| data$ |
data$:
|
Type : Observable<T>
|
| Optional |
| scope |
scope:
|
Type : string
|
import { Observable } from 'rxjs';
/**
* Used to envelope data observable together with specified scope
*/
export interface ScopedData<T> {
scope: string;
data$?: Observable<T>;
}