Files
optima/src/app.d.ts
T
2026-02-16 07:47:08 -06:00

20 lines
459 B
TypeScript

// See https://svelte.dev/docs/kit/types#app.d.ts
// for information about these interfaces
declare global {
namespace App {
// interface Error {}
interface Locals {
session?: {
accessToken: string | null;
refreshToken: string | null;
set(accessToken: string, refreshToken: string): Promise<void>;
};
}
// interface PageData {}
// interface PageState {}
// interface Platform {}
}
}
export {};