mirror of
https://github.com/Dan6erbond/sk-auth.git
synced 2025-01-06 00:08:15 +01:00
14 lines
176 B
TypeScript
14 lines
176 B
TypeScript
export interface JWT {
|
|
user: User;
|
|
[key: string]: any;
|
|
}
|
|
|
|
export interface User {
|
|
[key: string]: any;
|
|
}
|
|
|
|
export interface Session {
|
|
user: User;
|
|
[key: string]: any;
|
|
}
|