mentorenwahl/docker/frontend/src/app.d.ts
Dominic Grimm 8f94f6fee9
Some checks reported errors
continuous-integration/drone/push Build encountered an error
Updated CI
2022-02-13 09:45:14 +01:00

21 lines
454 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 {}
}