Начальный коммит

This commit is contained in:
Иван Кузьменко 2025-02-28 05:02:25 +03:00
commit 203b2d8403
42 changed files with 5183 additions and 0 deletions

36
src/app.d.ts vendored Normal file
View file

@ -0,0 +1,36 @@
import type { Member } from '$lib/types/Member';
declare global {
namespace App {
// interface Error {}
// interface Locals {}
// interface PageData {}
// interface Platform {}
interface Route {
label: string;
icon: string;
href: string;
}
interface MdsvexFile {
default: import('svelte/internal').SvelteComponent;
metadata: Record<string, string>;
}
type MdsvexResolver = () => Promise<MdsvexFile>;
interface BlogPost {
slug: string;
title: string;
thumbnail: string;
date: string;
description: string;
publisher: string;
published?: boolean;
member?: Member;
}
}
}
export {};