mirror of
https://github.com/kmc7468/arkvault.git
synced 2025-12-15 22:38:47 +00:00
21 lines
355 B
TypeScript
21 lines
355 B
TypeScript
// See https://svelte.dev/docs/kit/types#app.d.ts
|
|
// for information about these interfaces
|
|
|
|
import "unplugin-icons/types/svelte";
|
|
|
|
declare global {
|
|
namespace App {
|
|
interface Locals {
|
|
ip: string;
|
|
userAgent: string;
|
|
session?: {
|
|
id: string;
|
|
userId: number;
|
|
clientId?: number;
|
|
};
|
|
}
|
|
}
|
|
}
|
|
|
|
export {};
|