UNPKG

@kyungseopk1m/holidays-kr

Version:

한국천문연구원 기반 대한민국 공휴일 데이터

20 lines (19 loc) 477 B
export interface Holiday { date: number; name: string; } export type HolidayResponse = { success: true; message: string; data: Holiday[]; } | { success: false; message: string; data: Holiday[]; }; export interface HolidaysOptions { baseUrl?: string; signal?: AbortSignal; } export declare const clearCache: () => void; export declare const holidays: (year: string, year2?: string, options?: HolidaysOptions) => Promise<HolidayResponse>;