Select the types of activity you want to include in your feed.
1// See https://kit.svelte.dev/docs/types#app 2// for information about these interfaces 3declare global { 4 namespace App { 5 // interface Error {} 6 interface Locals { 7 getSession(): Promise<{ id: string }>; 8 } 9 // interface PageData {} 10 // interface Platform {} 11 } 12} 13 14export {};