PronounsPage/shared/types/virtual.d.ts
Valentyne Stigloher 10180aa6a3 (refactor) use #shared alias instead of ~~/shared
the #shared alias used by Nuxt cannot be easily disabled and to prevent breackage with jiti, we make use of it
2025-08-17 18:56:02 +02:00

7 lines
231 B
TypeScript

declare module '#virtual/calendar/events.ts' {
import type { Event } from '#shared/calendar/helpers.ts';
declare const localEventsByLocale: Record<string, () => Promise<Event[]>>;
export default localEventsByLocale;
}