Remove explicit sveltekit typing (#490)

This commit is contained in:
Lachlan Collins
2023-11-20 00:57:15 +11:00
committed by GitHub
parent b758d71846
commit b8d5d62cfe
3 changed files with 3 additions and 6 deletions

View File

@@ -2,8 +2,7 @@
import Societies from '$lib/components/Societies/index.svelte';
import EventListElement from '$lib/components/EventListElement/index.svelte';
import Seo from '$lib/components/Seo.svelte';
import type { PageData } from './$types';
export let data: PageData;
export let data;
</script>
<Seo title="Events" />

View File

@@ -1,8 +1,7 @@
import { error } from '@sveltejs/kit';
import type { PageLoad } from './$types';
import { getPages } from '../pageList';
export async function load(): Promise<PageLoad> {
export async function load() {
const events = await getPages(import.meta.glob('./**/*.svx'));
if (events) {

View File

@@ -1,9 +1,8 @@
import { error } from '@sveltejs/kit';
import '$styles/highlight.css';
import type { PageLoad } from './$types';
import { getPages } from '../pageList';
export async function load(): Promise<PageLoad> {
export async function load() {
const pages = (await getPages(import.meta.glob('./**/*.svx'))).map((element) => ({
...element,
path: '/recipes' + element.path.substring(1)