language-learning-app/frontend/src/app.d.ts
2026-03-25 21:09:38 +00:00

18 lines
386 B
TypeScript

import type { ApiClient } from './client/types.gen.ts';
// See https://svelte.dev/docs/kit/types#app.d.ts
// for information about these interfaces
declare global {
namespace App {
// interface Error {}
interface Locals {
apiClient?: ApiClient;
authToken: string | null;
}
// interface PageData {}
// interface PageState {}
// interface Platform {}
}
}
export {};