mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-08-03 11:07:00 -04:00
7 lines
229 B
TypeScript
7 lines
229 B
TypeScript
declare module '#virtual/calendar/events.ts' {
|
|
import type { Event } from '~/src/calendar/helpers.ts';
|
|
|
|
declare const localEventsByLocale: Record<string, () => Promise<Event[]>>;
|
|
export default localEventsByLocale;
|
|
}
|