@nesto-software/moment-holiday-austria
Version:
The austrian locale for moment-holiday.
16 lines (15 loc) • 602 B
TypeScript
import { MultivalueTag } from "@nesto-software/moment-holiday-core";
/**
* Indicates that the holiday is only applicable for people with one of the given
* religions.
*/
export declare class ReligionTag extends MultivalueTag<Religion> {
private readonly _religionOrReligions;
constructor(_religionOrReligions: Religion | Religion[]);
}
export declare enum Religion {
ENVANGELISCH_AB = "Evangelische Kirche A.B.",
ENVANGELISCH_HB = "Evangelische Kirche H.B.",
ALTKATHOLISCHE_KIRCHE = "Altkatholische Kirche",
EVANGELISCH_METHODISTISCH = "Evangelisch-methodistischen Kirche"
}