File

projects/core/src/model/scoped-data.ts

Description

Used to envelope data observable together with specified scope

Index

Properties

Properties

data$
data$: Observable<T>
Type : Observable<T>
Optional
scope
scope: string
Type : string
import { Observable } from 'rxjs';

/**
 * Used to envelope data observable together with specified scope
 */
export interface ScopedData<T> {
  scope: string;
  data$?: Observable<T>;
}

result-matching ""

    No results matching ""