Skip to content

Commit

Permalink
update package/src/utils/index.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
uvarov-frontend committed Nov 17, 2024
1 parent 27d01c7 commit b77b399
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package/src/utils/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import getWeekNumberOriginal from '@scripts/utils/getWeekNumber';
import parseDatesOriginal from '@scripts/utils/parseDates';
import type { FormatDateString, WeekDayID } from '@src/types';

export const parseDates = (dates: Array<number | string | Date>) => parseDatesOriginal(dates);
export const parseDates = (dates: string[]) => parseDatesOriginal(dates);

export const getDateString = (date: Date) => getDateStringOriginal(date);

Expand Down

0 comments on commit b77b399

Please sign in to comment.