language-learning-app/frontend/src/app.d.ts

19 lines
386 B
TypeScript
Raw Normal View History

2026-03-25 21:09:38 +00:00
import type { ApiClient } from './client/types.gen.ts';
2026-03-23 07:17:46 +00:00
// See https://svelte.dev/docs/kit/types#app.d.ts
// for information about these interfaces
declare global {
namespace App {
// interface Error {}
2026-03-25 21:09:38 +00:00
interface Locals {
apiClient?: ApiClient;
authToken: string | null;
}
2026-03-23 07:17:46 +00:00
// interface PageData {}
// interface PageState {}
// interface Platform {}
}
}
export {};