@ministryofjustice/hmpps-digital-prison-reporting-frontend
Version:
The Digital Prison Reporting Frontend contains templates and code to help display data effectively in UI applications.
10 lines (9 loc) • 535 B
TypeScript
import { ServiceFeatureConfig } from '../../types/DprConfig';
import ReportDataStore from '../../data/reportDataStore';
import ReportStoreService from '../reportStoreService';
export declare class ProductCollectionStoreService extends ReportStoreService {
enabled: boolean;
constructor(reportDataStore: ReportDataStore, serviceFeatureConfig: ServiceFeatureConfig);
getSelectedProductCollectionId(userId: string): Promise<string | undefined>;
setSelectedProductCollectionId(userId: string, id: string): Promise<void>;
}