Files
svelte-formula11/src/app.d.ts
Christoph Urlacher f868d779e7
All checks were successful
Build Formula11 Docker Image / pocketbase-docker (push) Successful in 43s
DISABLE SSR AND TRANSITION TO SPA
2025-02-08 16:37:58 +01:00

24 lines
637 B
TypeScript

import type { User } from "$lib/schema";
import type { PocketBase, RecordModel } from "pocketbase";
// See https://svelte.dev/docs/kit/types#app.d.ts
// for information about these interfaces
declare global {
namespace App {
// interface Locals {}
// interface Error {}
// interface PageData {}
// interface PageState {}
// interface Platform {}
}
declare namespace svelteHTML {
interface HTMLAttributes<T> {
/** This element will be dispatched once an element with [use:lazyload] starts intersecting with the viewport. */
onLazyVisible?: (event: CustomEvent) => void;
}
}
}
export {};