7 lines
No EOL
129 B
TypeScript
7 lines
No EOL
129 B
TypeScript
export interface Review {
|
|
comment?: string,
|
|
author: string,
|
|
date: Date,
|
|
rating: number,
|
|
affiliated: boolean
|
|
} |