mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 02:49:29 +08:00
17 lines
427 B
Text
17 lines
427 B
Text
declare module '*.svx' {
|
|
import type { SvelteComponentDev } from 'svelte/internal';
|
|
|
|
export default class Comp extends SvelteComponentDev {
|
|
$$prop_def: {};
|
|
}
|
|
export const metadata: Record<string, any>;
|
|
}
|
|
|
|
declare module '*.svelte.md' {
|
|
import type { SvelteComponentDev } from 'svelte/internal';
|
|
|
|
export default class Comp extends SvelteComponentDev {
|
|
$$prop_def: {};
|
|
}
|
|
export const metadata: Record<string, any>;
|
|
}
|