mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-28 15:31:11 -04:00

the #shared alias used by Nuxt cannot be easily disabled and to prevent breackage with jiti, we make use of it
7 lines
231 B
TypeScript
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;
|
|
}
|