src/lib/service/stored-queries/stored-queries-subscription.interface.ts
Type of data emitted by this services subject
Properties |
queries |
queries:
|
Type : StoredQuery[]
|
list of stored queries |
select |
select:
|
Type : string
|
Optional |
optional: ID of a stored query to be selected |
import {StoredQuery} from './stored-query.model';
/**
* Type of data emitted by this services subject
*/
export interface StoredQueriesSubscription {
/**
* list of stored queries
*/
queries: StoredQuery[];
/**
* optional: ID of a stored query to be selected
*/
select?: string;
}