summaryrefslogtreecommitdiff
path: root/src/app.d.ts
blob: 3787c0c028efac9a7cb1ad8acc3bb41edb2050d2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// See https://svelte.dev/docs/kit/types#app.d.ts

// for information about these interfaces
declare global {
	namespace App {
		interface ServiceItem {
			icon: any;
			name: string;
			description: string;
			url: string;
			source: string;
			references: { name: string; url: string }[];
		}
		// interface Error {}
		// interface Locals {}
		// interface PageData {}
		// interface PageState {}
		// interface Platform {}
	}
}

export {};