Skip to content

Commit

Permalink
fix: remove circular import (#1516)
Browse files Browse the repository at this point in the history
Co-authored-by: Podaru Dragos <podaru.dragos@gmail.com>
Co-authored-by: James Monger <jameskmonger@hotmail.co.uk>
  • Loading branch information
3 people committed Oct 15, 2023
1 parent dcaeda4 commit 758a6bd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/scope/scope.ts
@@ -1,4 +1,5 @@
import { BindingScopeEnum, interfaces } from '../inversify';
import { BindingScopeEnum } from '../constants/literal_types';
import type { interfaces } from '../interfaces/interfaces'
import { isPromise } from '../utils/async';

export const tryGetFromScope = <T>(
Expand Down
3 changes: 2 additions & 1 deletion src/utils/binding_utils.ts
@@ -1,4 +1,5 @@
import { getServiceIdentifierAsString, interfaces } from '../inversify';
import { getServiceIdentifierAsString } from '../utils/serialization';
import type { interfaces } from '../interfaces/interfaces'
import * as ERROR_MSGS from '../constants/error_msgs';
import { BindingTypeEnum } from '../constants/literal_types';
import { FactoryType } from './factory_type';
Expand Down

0 comments on commit 758a6bd

Please sign in to comment.