EchoForum/src/app.d.ts
2024-05-09 16:06:43 +03:00

18 lines
319 B
TypeScript

// See https://kit.svelte.dev/docs/types#app
// for information about these interfaces
import type { Sql } from "postgres";
declare global {
namespace App {
// interface Error {}
interface Locals {
sql: Sql
}
// interface PageData {}
// interface PageState {}
// interface Platform {}
}
}
export {};