Select Git revision
products.controller.d.ts
products.controller.d.ts 521 B
import { ProductsService } from './products.service';
import { CreateProductDto } from './dto/create-product.dto';
import { UpdateProductDto } from './dto/update-product.dto';
export declare class ProductsController {
private readonly productsService;
constructor(productsService: ProductsService);
create(createProductDto: CreateProductDto): string;
findAll(): string;
findOne(id: string): string;
update(id: string, updateProductDto: UpdateProductDto): string;
remove(id: string): string;
}