Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 442 Bytes
b2ecf7d 388ac76 16601c5 b2ecf7d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
// See https://kit.svelte.dev/docs/types#app
// for information about these interfaces
declare global {
namespace App {
// interface Error {}
// interface Locals {}
// interface PageData {}
// interface Platform {}
}
export interface Session {
access_token?: string;
}
}
declare module "@auth/core/types" {
export interface Session {
access_token?: string;
}
export interface User {
username: string;
}
}
export {};
|