9 lines
140 B
TypeScript

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