Gitlab@Informatics

Skip to content
Snippets Groups Projects
Select Git revision
  • d92e7fb67e34a42a77c975832b4c7adcac09782b
  • main default protected
2 results

products.service.d.ts

Blame
  • products.service.d.ts 375 B
    import { CreateProductDto } from './dto/create-product.dto';
    import { UpdateProductDto } from './dto/update-product.dto';
    export declare class ProductsService {
        create(createProductDto: CreateProductDto): string;
        findAll(): string;
        findOne(id: number): string;
        update(id: number, updateProductDto: UpdateProductDto): string;
        remove(id: number): string;
    }