graycoreio/daffodil

View on GitHub
libs/reviews/src/models/product-reviews.interface.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { DaffCollection } from '@daffodil/core';

import { DaffProductReview } from './product-review.interface';

/**
 * A collection of product reviews.
 */
export type DaffProductReviews<T extends DaffProductReview = DaffProductReview> = DaffCollection<T>;