@ministryofjustice/hmpps-digital-prison-reporting-frontend
Version:
The Digital Prison Reporting Frontend contains templates and code to help display data effectively in UI applications.
13 lines (10 loc) • 589 B
TypeScript
import { ServiceFeatureConfig } from '../../types/DprConfig.js';
import { ReportDataStore } from '../../data/reportDataStore.js';
import { ReportStoreService } from '../reportStoreService.js';
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>;
}
export { ProductCollectionStoreService };