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