import DependencyContainer type directly from tsyringe
- Redundant re-export of DependencyContainer from tsyringe, caused madge to think it was a circular dependency due to the file name also being tsyringe, deleted the file and importing directly from tsyringe instead.
This commit is contained in:
parent
a7334c198b
commit
f48e704bf1
@ -1,4 +1,4 @@
|
|||||||
import { DependencyContainer } from "@spt-aki/models/external/tsyringe";
|
import type { DependencyContainer } from "tsyringe";
|
||||||
|
|
||||||
export interface IPostAkiLoadMod
|
export interface IPostAkiLoadMod
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { DependencyContainer } from "@spt-aki/models/external/tsyringe";
|
import type { DependencyContainer } from "tsyringe";
|
||||||
|
|
||||||
export interface IPostAkiLoadModAsync
|
export interface IPostAkiLoadModAsync
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { DependencyContainer } from "@spt-aki/models/external/tsyringe";
|
import type { DependencyContainer } from "tsyringe";
|
||||||
|
|
||||||
export interface IPostDBLoadMod
|
export interface IPostDBLoadMod
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { DependencyContainer } from "@spt-aki/models/external/tsyringe";
|
import type { DependencyContainer } from "tsyringe";
|
||||||
|
|
||||||
export interface IPostDBLoadModAsync
|
export interface IPostDBLoadModAsync
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { DependencyContainer } from "@spt-aki/models/external/tsyringe";
|
import type { DependencyContainer } from "tsyringe";
|
||||||
|
|
||||||
export interface IPreAkiLoadMod
|
export interface IPreAkiLoadMod
|
||||||
{
|
{
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { DependencyContainer } from "@spt-aki/models/external/tsyringe";
|
import type { DependencyContainer } from "tsyringe";
|
||||||
|
|
||||||
export interface IPreAkiLoadModAsync
|
export interface IPreAkiLoadModAsync
|
||||||
{
|
{
|
||||||
|
2
project/src/models/external/tsyringe.ts
vendored
2
project/src/models/external/tsyringe.ts
vendored
@ -1,2 +0,0 @@
|
|||||||
import type { DependencyContainer } from "tsyringe";
|
|
||||||
export type { DependencyContainer } ;
|
|
Loading…
Reference in New Issue
Block a user