Skip to content

Commit

Permalink
DateRangeBox: use not consistent type imports (#27434)
Browse files Browse the repository at this point in the history
  • Loading branch information
EugeniyKiyashko authored May 21, 2024
1 parent 97a8d01 commit 8108dd2
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ import $ from '@js/core/renderer';
import { getWidth } from '@js/core/utils/size';
import eventsEngine from '@js/events/core/events_engine';
import { addNamespace } from '@js/events/utils';
import type { Properties } from '@js/ui/date_box';
import DateBox, { DateBoxBase } from '@js/ui/date_box';
// eslint-disable-next-line @typescript-eslint/consistent-type-imports
import type { DateBoxBase, Properties } from '@js/ui/date_box';
import DateBox from '@js/ui/date_box';
import type Popup from '@js/ui/popup';

import { getDeserializedDate, monthDifference } from './m_date_range.utils';
Expand Down

0 comments on commit 8108dd2

Please sign in to comment.