mirror of
https://github.com/BradNut/boredgame
synced 2025-09-08 17:40:22 +00:00
14 lines
275 B
TypeScript
14 lines
275 B
TypeScript
// See https://kit.svelte.dev/docs/types#app
|
|
// for information about these interfaces
|
|
// and what to do when importing types
|
|
declare namespace App {
|
|
interface Locals {
|
|
userid: string;
|
|
}
|
|
|
|
// interface PageData {}
|
|
|
|
// interface PageError {}
|
|
|
|
// interface Platform {}
|
|
}
|