Files
objectstorage/ts_interfaces/data/auth.ts
T

8 lines
122 B
TypeScript
Raw Normal View History

export interface IIdentity {
jwt: string;
userId: string;
username: string;
expiresAt: number;
role: 'admin';
}