Skip to content

Commit

Permalink
feat: Added User type
Browse files Browse the repository at this point in the history
miguel-merlin committed Feb 14, 2024
1 parent 929f98b commit 3d04965
Showing 2 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/types/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './user'
8 changes: 8 additions & 0 deletions src/types/user.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export interface User {
username: string
password: string
email: string
displayName: string
role: string[]
enabled: boolean
}

0 comments on commit 3d04965

Please sign in to comment.