UNPKG

@spartacus/core

Version:

Spartacus - the core framework

9 lines (8 loc) 190 B
import { Observable } from 'rxjs'; /** * Used to envelope data observable together with specified scope */ export interface ScopedData<T> { scope: string; data$?: Observable<T>; }