Interface ObservableDataSourceMetadata<Data>

interface ObservableDataSourceMetadata<Data> {
    data?: Observable<Data>;
    id: string;
    restore?: boolean;
    [key: string]: any;
}

Type Parameters

  • Data

Hierarchy (View Summary)

Indexable

  • [key: string]: any

Properties

Properties

data?: Observable<Data>
id: string
restore?: boolean

Indicates weather the data source should restore the last value from local storage