benjaminpalko/src/app.d.ts
Benjamin Palko ce50f8a6d6
All checks were successful
Deployment / Deploy website (push) Successful in 2m42s
Deployment / Deploy strapi (push) Successful in 2m45s
reverse proxy for uploads
2025-05-06 15:14:18 -04:00

18 lines
345 B
TypeScript

// See https://svelte.dev/docs/kit/types#app.d.ts
import type { Strapi } from '$lib/server/strapi';
// for information about these interfaces
declare global {
namespace App {
// interface Error {}
interface Locals {
strapi: Strapi;
}
// interface PageData {}
// interface PageState {}
// interface Platform {}
}
}
export {};