mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-26 14:32:04 -04:00

the #shared alias used by Nuxt cannot be easily disabled and to prevent breackage with jiti, we make use of it
8 lines
539 B
TypeScript
8 lines
539 B
TypeScript
import { Event, day, EventLevel } from '#shared/calendar/helpers.ts';
|
|
|
|
export default [
|
|
// --- static date ---
|
|
new Event('Годовщина декриминализации гомосексуальности в России (1993)', { type: 'flag', name: '_law', class: 'invertible' }, 4, day(29), EventLevel.Day),
|
|
new Event('Годовщина декриминализации гомосексуальности в Беларуси (1994)', { type: 'flag', name: '_law', class: 'invertible' }, 3, day(1), EventLevel.Day),
|
|
];
|