Files
dry-wash-pl/src/models/landing/review.ts

9 lines
140 B
TypeScript

export type Id = string;
export type View = {
id: Id;
firstname: string;
lastname: string;
picture: URL['href'];
text: string;
};