mapcomplete/Logic/Web/Review.ts

7 lines
129 B
TypeScript
Raw Normal View History

2020-12-08 22:44:34 +00:00
export interface Review {
comment?: string,
author: string,
date: Date,
rating: number,
affiliated: boolean
}