show user first impl.

This commit is contained in:
Sockenklaus
2023-07-08 22:17:39 +02:00
parent 39a28cbd14
commit decf693f4f
6 changed files with 76 additions and 17 deletions

View File

@@ -0,0 +1,10 @@
import type { DateTime } from 'luxon'
export type User = {
id: Number,
username: String,
is_admin: Boolean,
updated_at: DateTime,
created_at: DateTime,
remember_me_token: String | null,
}