mongoku
Version:
[](https://github.com/huggingface/Mongoku/actions/workflows/ci.yml)
24 lines (22 loc) • 418 B
TypeScript
// See https://svelte.dev/docs/kit/types#app.d.ts
// for information about these interfaces
declare global {
namespace App {
interface Error {
message: string;
code?: number | string;
}
interface Locals {
requestId: string;
user?: {
sub?: string;
name?: string;
email?: string;
};
}
// interface PageData {}
// interface PageState {}
// interface Platform {}
}
}
export {};