M1_ProjetWeb/src/app.d.ts

17 lines
313 B
TypeScript
Raw Normal View History

2024-11-25 16:27:31 +01:00
// See https://svelte.dev/docs/kit/types#app.d.ts
// for information about these interfaces
declare global {
namespace App {
// interface Error {}
interface Locals {
token?: string;
userId?: string;
}
2024-11-25 16:27:31 +01:00
// interface PageData {}
// interface PageState {}
// interface Platform {}
}
}
export {};