This repository has been archived on 2023-05-29. You can view files and clone it, but cannot push or open issues or pull requests.
fp-ts-training/src/exo6/domain/User/type.ts

6 lines
78 B
TypeScript

export type User = {
id: string;
name: string;
bestFriendId: string;
};