20 lines
412 B
TypeScript
20 lines
412 B
TypeScript
// See https://svelte.dev/docs/kit/types#app.d.ts
|
|
// for information about these interfaces
|
|
import type { RecordModel } from 'pocketbase';
|
|
import type PocketBase from 'pocketbase';
|
|
|
|
declare global {
|
|
namespace App {
|
|
// interface Error {}
|
|
interface Locals {
|
|
pb: PocketBase;
|
|
user: RecordModel | null;
|
|
}
|
|
// interface PageData {}
|
|
// interface PageState {}
|
|
// interface Platform {}
|
|
}
|
|
}
|
|
|
|
export {};
|