Skip to content

Commit

Permalink
refactor(kit): remove circular import (#1861)
Browse files Browse the repository at this point in the history
  • Loading branch information
nsbarsukov authored Nov 27, 2024
1 parent e27d705 commit 15ff0b8
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 15ff0b8

Please sign in to comment.