export interface ProjectInterface {
id: string;
@ApiProperty
title: string;
description: string;
How to use swagger docs implementation while using interface instead of class AS DTO? At API Property annotation error is showing because of the interface that I used. But if I don't want to use class. How can I implement this?