UNPKG

mobile-react-infinite-calendar

Version:

A mobile-optimized infinite scroll calendar component for React

20 lines (19 loc) 574 B
/** * ID 생성 유틸리티 */ /** * 캘린더 이벤트용 ID 생성 */ export declare const generateEventId: (date: string, title: string, index: number) => string; /** * 공휴일용 ID 생성 */ export declare const generateHolidayId: (date: string, name?: string) => string; /** * 일반적인 ID 생성 (prefix + date + title + index) */ export declare const generateId: (prefix: string, date: string, title: string, index?: number) => string; /** * UUID 스타일의 랜덤 ID 생성 (간단 버전) */ export declare const generateRandomId: () => string;