nextjs
|
Last change
on this file since 509bd19 was 836ca43, checked in by Vasilaki Tocili <vasilakigorgi@…>, 4 months ago |
|
fix: revert changing names of User to 'user_*'
- Attempt to fix the server throwing an error saying
"column 'user_id' does not exist"
|
-
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 |
|
|---|
| 4 | export 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.