79356263

Date: 2025-01-14 20:12:28
Score: 0.5
Natty:
Report link
export type TCategoryAnalyzes = Record<string, {
  categoryId: string;
  analyzes: IAnalyzesStorageData[];
}>;

This may also work for your use case. However, the Record utility type may be less flexible than the original answer.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: bpeter340