Standardize file naming and improve typings export

Renamed functions files to follow consistent camelCase convention. Added a missing type export for ITSInjex interface in the main index file, enabling better TypeScript type support and ensuring interfaces are available for external modules.
This commit is contained in:
2024-08-14 21:39:59 +02:00
parent c1a4dc7bd0
commit 3c308635dd
3 changed files with 1 additions and 2 deletions

View File

@@ -1,8 +1,7 @@
export * from './TSInjex';
export * from './decorators/Inject';
export * from './decorators/Register';
export * from './decorators/RegisterInstance';
export * from './functions/resolve';
export * from './functions/register';
export type * from './interfaces/ITSInjex';