mentorenwahl/frontend/src/app.d.ts
Dominic Grimm 50379148bc
Some checks failed
continuous-integration/drone/push Build is failing
Update codebase
2022-10-31 09:47:26 +01:00

22 lines
457 B
TypeScript

/// <reference types="@sveltejs/kit" />
// See https://kit.svelte.dev/docs#typescript
// for information about these interfaces
declare namespace App {
interface Locals {
user: {
token?: string;
};
}
// eslint-disable-next-line @typescript-eslint/no-empty-interface
interface Platform {}
interface Session {
user: Locals["user"];
}
// eslint-disable-next-line @typescript-eslint/no-empty-interface
interface Stuff {}
}