slovocast/app/src/model/User.ts

7 lines
72 B
TypeScript

type User = {
name: string,
email: string,
};
export default User;