projects/dvl-fw-core/src/lib/interfaces/record-stream.ts
Properties |
Methods |
asObservable |
asObservable()
|
Returns :
Observable<RawChangeSet<T>>
|
toJSON |
toJSON()
|
Returns :
any
|
id |
id:
|
Type : string
|
label |
label:
|
Type : string
|
import { RawChangeSet } from '@ngx-dino/core';
import { Observable } from 'rxjs';
export interface RecordStream<T = any> {
id: string;
label: string;
asObservable(): Observable<RawChangeSet<T>>;
toJSON(): any;
}