2024-06-29 18:58:00 +01:00
|
|
|
// needed so that changelog files are appropriately
|
|
|
|
// typed as svelte components
|
|
|
|
declare module '*.md' {
|
|
|
|
import type { SvelteComponentDev } from 'svelte/internal';
|
|
|
|
|
|
|
|
export default class Comp extends SvelteComponentDev {
|
|
|
|
$$prop_def: {};
|
|
|
|
}
|
|
|
|
export const metadata: Record<string, any>;
|
|
|
|
}
|
|
|
|
|
2024-06-13 10:32:17 +01:00
|
|
|
// See https://kit.svelte.dev/docs/types#app
|
|
|
|
// for information about these interfaces
|
|
|
|
declare global {
|
|
|
|
namespace App {
|
|
|
|
// interface Error {}
|
|
|
|
// interface Locals {}
|
|
|
|
// interface PageData {}
|
|
|
|
// interface PageState {}
|
|
|
|
// interface Platform {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export {};
|