a template starter repo for sveltekit projects
0

Configure Feed

Select the types of activity you want to include in your feed.

suede / src / app.d.ts
376 B 19 lines
1// See https://svelte.dev/docs/kit/types#app.d.ts 2// for information about these interfaces 3declare global { 4 namespace App { 5 interface Platform { 6 env: Env; 7 ctx: ExecutionContext; 8 caches: CacheStorage; 9 cf?: IncomingRequestCfProperties; 10 } 11 12 // interface Error {} 13 // interface Locals {} 14 // interface PageData {} 15 // interface PageState {} 16 } 17} 18 19export {};