UNPKG

@jbouduin/holidays-lib

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