UNPKG

@jbouduin/holidays-lib

Version:
13 lines 678 B
import { IFixedDateHoliday } from '../holidays'; import { Category, Cycle } from '../types'; import { IBaseFactory, BaseFactory } from './base-factory'; export interface IFixedDateFactory extends IBaseFactory<IFixedDateHoliday, string> { } export declare class FixedDateFactory extends BaseFactory<IFixedDateHoliday, string> implements IFixedDateFactory { private fixedDate; constructor(); protected createHoliday(key: string, category: Category, cycle: Cycle, validFrom: number, validTo: number): IFixedDateHoliday; protected extractData(obj: any): void; protected extractKey(obj: any): string; } //# sourceMappingURL=fixed-date-factory.d.ts.map