Skip to content

Commit

Permalink
refactor: separate type from value imports
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinCupela committed Jun 14, 2024
1 parent c2db5b6 commit 493c06c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/i18n/Streami18n.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@ import localeData from 'dayjs/plugin/localeData';
import relativeTime from 'dayjs/plugin/relativeTime';
import utc from 'dayjs/plugin/utc';
import timezone from 'dayjs/plugin/timezone';
import { CustomFormatters, PredefinedFormatters, predefinedFormatters } from './utils';
import { predefinedFormatters } from './utils';

import type momentTimezone from 'moment-timezone';
import type { TranslationLanguages } from 'stream-chat';

import type { CustomFormatters, PredefinedFormatters } from './utils';
import type { TDateTimeParser } from '../context/TranslationContext';

import type { UnknownType } from '../types/types';
Expand Down

0 comments on commit 493c06c

Please sign in to comment.