2023-01-06 04:49:40 -06:00

16 lines
369 B
TypeScript

// See https://kit.svelte.dev/docs/types#app
// for information about these interfaces
// and what to do when importing types
declare namespace App {
// interface Locals {}
// interface PageData {}
// interface Error {}
// interface Platform {}
}
type DocPage = Metadata<{ title: string }>
declare module '*.md' {
const content: DocPage
export = content
}