Skip to content

Commit

Permalink
fix: add missing LazyServiceIdentifer
Browse files Browse the repository at this point in the history
  • Loading branch information
notaphplover committed Dec 19, 2024
1 parent c70fc93 commit 264a2a8
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -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';
Expand Down

0 comments on commit 264a2a8

Please sign in to comment.