From 264a2a8051f8da041bf98291ab3b528fa4f55034 Mon Sep 17 00:00:00 2001 From: notaphplover Date: Thu, 19 Dec 2024 23:13:27 +0100 Subject: [PATCH] fix: add missing LazyServiceIdentifer --- src/index.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/index.ts b/src/index.ts index dd69ae8f3..227df78a0 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,8 +1,18 @@ +/* eslint-disable @typescript-eslint/naming-convention */ import 'reflect-metadata'; +import { LazyServiceIdentifier } from '@inversifyjs/common'; + import * as keys from './constants/metadata_keys'; export { LazyServiceIdentifier } from '@inversifyjs/common'; + +/** + * @deprecated Use LazyServiceIdentifier instead + */ +export const LazyServiceIdentifer: typeof LazyServiceIdentifier = + LazyServiceIdentifier; + // eslint-disable-next-line @typescript-eslint/typedef export const METADATA_KEY = keys; export { Container } from './container/container';