chat-ui / src /app.d.ts
coyotte508's picture
coyotte508 HF staff
✨ Backend preparation for "Sign in with HF" (#190)
2e28042 unverified
raw history blame
No virus
422 Bytes
/// <reference types="@sveltejs/kit" />
/// <reference types="unplugin-icons/types/svelte" />
import type { ObjectId } from "mongodb";
// See https://kit.svelte.dev/docs/types#app
// for information about these interfaces
declare global {
namespace App {
// interface Error {}
interface Locals {
sessionId: string;
userId?: ObjectId;
}
// interface PageData {}
// interface Platform {}
}
}
export {};