UNPKG

@tomei/product

Version:

NestJS package for product module

8 lines (7 loc) 456 B
import { RepositoryBase, IRepositoryBase } from '@tomei/general'; import { ProductCollectionsModel } from '../../entities/product-collection.entity'; export declare class ProductProductCollectionRepository extends RepositoryBase<ProductCollectionsModel> implements IRepositoryBase<ProductCollectionsModel> { constructor(); findAndCountAll(options?: any): Promise<any>; delete(ProductCollectionId: string, dbTransaction?: any): Promise<void>; }