Interface BaseDataSourceViewer<View>

interface BaseDataSourceViewer<View = any> {
    id?: string;
    restore?: boolean;
    viewChange?: Observable<View>;
    [key: string]: any;
}

Type Parameters

  • View = any

Indexable

  • [key: string]: any

Properties

id?: string
restore?: boolean

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

viewChange?: Observable<View>