~repos /only-bible-app
git clone https://pyrossh.dev/repos/only-bible-app.git
The only bible app you will ever need. No ads. No in-app purchases. No distractions.
780a3376
—
pyrossh 1 year ago
fix ts complaining
- website/src/app.d.ts +9 -8
- website/src/routes/+page.svelte +2 -2
website/src/app.d.ts
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
// See https://kit.svelte.dev/docs/types#app
|
|
2
2
|
// for information about these interfaces
|
|
3
|
+
import '@poppanator/sveltekit-svg/dist/svg';
|
|
3
4
|
declare global {
|
|
4
|
-
|
|
5
|
+
namespace App {
|
|
5
|
-
|
|
6
|
+
// interface Error {}
|
|
6
|
-
|
|
7
|
+
// interface Locals {}
|
|
7
|
-
|
|
8
|
+
// interface PageData {}
|
|
8
|
-
|
|
9
|
+
// interface PageState {}
|
|
9
|
-
|
|
10
|
+
// interface Platform {}
|
|
10
|
-
|
|
11
|
+
}
|
|
11
12
|
}
|
|
12
13
|
|
|
13
|
-
export {};
|
|
14
|
+
export { };
|
website/src/routes/+page.svelte
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<script>
|
|
2
|
-
import PlayStoreIcon from '$lib/icons/playstore.svg';
|
|
2
|
+
import PlayStoreIcon from '$lib/icons/playstore.svg?component';
|
|
3
|
-
import AppStoreIcon from '$lib/icons/appstore.svg';
|
|
3
|
+
import AppStoreIcon from '$lib/icons/appstore.svg?component';
|
|
4
4
|
import logoPng from '../../../assets/icon.png';
|
|
5
5
|
</script>
|
|
6
6
|
|