vital-kit
v0.0.3
Published
Various parts to fill out functionality for SvelteKit to make it more of a batteries included framework.
Readme
Vital Kit
Various parts to fill out functionality for SvelteKit to make it more of a batteries included framework.
Installation
npm install vital-kitTypes
Update your app.d.ts:
declare global {
namespace App {
// interface Error {}
interface Locals {
logger: import("pino").Logger;
reqId: string;
}
// interface PageData {}
// interface PageState {}
// interface Platform {}
}
}
export {};