mirror of
https://github.com/Dan6erbond/sk-auth.git
synced 2025-07-11 13:47:47 +02: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;
|
|
}
|