Skip to content

Commit

Permalink
refactor(kit): remove circular import
Browse files Browse the repository at this point in the history
  • Loading branch information
nsbarsukov committed Nov 22, 2024
1 parent 043ec21 commit e722b02
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import type {MaskitoPreprocessor} from '@maskito/core';
import type {MaskitoTimeMode, MaskitoTimeSegments} from '@maskito/kit';

import {
DEFAULT_TIME_SEGMENT_MAX_VALUES,
DEFAULT_TIME_SEGMENT_MIN_VALUES,
TIME_FIXED_CHARACTERS,
TIME_SEGMENT_VALUE_LENGTHS,
} from '../constants';
import type {MaskitoTimeMode, MaskitoTimeSegments} from '../types';
import {clamp, escapeRegExp} from '../utils';
import {parseTimeString} from '../utils/time';

Expand Down

0 comments on commit e722b02

Please sign in to comment.