source: app/lib/definitions.ts@ f6e08aa

nextjs
Last change on this file since f6e08aa was f6e08aa, checked in by Vasilaki Tocili <vasilakigorgi@…>, 4 months ago

refactor: remove leftover unused code from course

  • Remove the files and lines of code that were leftover from the course,

currently unused and are coupled with the template database

  • This is a step toward a new database design and backend
  • Property mode set to 100644
File size: 232 bytes
Line 
1// This file contains type definitions for the data.
2// It describes the shape of the data, and what data type each property should accept.
3
4export type User = {
5 id: string;
6 name: string;
7 email: string;
8 password: string;
9};
Note: See TracBrowser for help on using the repository browser.