15 lines
406 B
TypeScript
15 lines
406 B
TypeScript
/// <reference types="@sveltejs/kit" />
|
|
import type { PrismaClient } from '../generated/prisma/client.ts';
|
|
|
|
// See https://kit.svelte.dev/docs/types#app
|
|
// for information about these interfaces
|
|
declare global {
|
|
namespace App {
|
|
interface Locals {
|
|
prisma: PrismaClient;
|
|
}
|
|
// interface Platform {}
|
|
// interface Session {}
|
|
// interface Stuff {}
|
|
}
|
|
}
|