8 lines
134 B
TypeScript
8 lines
134 B
TypeScript
![]() |
export interface IIdentity {
|
||
|
jwt: string;
|
||
|
userId: string;
|
||
|
name: string;
|
||
|
expiresAt: number;
|
||
|
role?: string;
|
||
|
type?: string;
|
||
|
}
|