Files
core/packages/api-client/dtos/comment.ts
Innei 34d8d3f41b fix: add types in comment
Signed-off-by: Innei <i@innei.in>
2023-06-28 14:43:52 +08:00

13 lines
147 B
TypeScript

export interface CommentDto {
author: string
text: string
mail: string
url?: string
source?: 'github' | 'google'
avatar?: string
}