UNPKG
@10abdullahbutt/auth-module
Version:
latest (1.0.0)
1.0.0
A NestJS-style authentication module with JWT and role-based access control.
@10abdullahbutt/auth-module
/
src
/
interfaces
/
user.interface.ts
6 lines
(5 loc)
•
83 B
text/typescript
View Raw
1
2
3
4
5
6
export
interface
User
{
userId
:
string
;
username
:
string
;
roles
:
string
[]; }