Skip to content

Commit

Permalink
Merge pull request #465 from john-d-pelingo/jdp/fix/remove-circular-d…
Browse files Browse the repository at this point in the history
…ependency

fix: resolve circular import
  • Loading branch information
davidgoli authored Mar 3, 2022
2 parents f446250 + 95c3eb9 commit 17268f4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/nlp/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import ToText, { DateFormatter, GetText } from './totext'
import parseText from './parsetext'
import RRule from '../index'
import RRule from '../rrule'
import { Frequency } from '../types'
import ENGLISH, { Language } from './i18n'

Expand Down
2 changes: 1 addition & 1 deletion src/nlp/parsetext.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import ENGLISH, { Language } from './i18n'
import RRule from '../index'
import RRule from '../rrule'
import { Options } from '../types'
import { WeekdayStr } from '../weekday'

Expand Down
4 changes: 2 additions & 2 deletions src/nlp/totext.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import ENGLISH, { Language } from './i18n'
import RRule from '../index'
import RRule from '../rrule'
import { Options, ByWeekday } from '../types'
import { Weekday } from '../weekday'
import { isArray, isNumber, isPresent, padStart } from '../helpers'
import { isArray, isNumber, isPresent } from '../helpers'

// =============================================================================
// Helper functions
Expand Down

0 comments on commit 17268f4

Please sign in to comment.