Skip to content

Commit

Permalink
refactor: add type prefix to exports
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffijoe committed Oct 4, 2024
1 parent e47efaa commit 1b9ec35
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions src/awilix.ts
Original file line number Diff line number Diff line change
@@ -1,38 +1,38 @@
export {
AwilixContainer,
ContainerOptions,
type AwilixContainer,
type ContainerOptions,
type CacheEntry,
type ClassOrFunctionReturning,
type FunctionReturning,
type NameAndRegistrationPair,
type RegistrationHash,
type ResolveOptions,
createContainer,
CacheEntry,
ClassOrFunctionReturning,
FunctionReturning,
NameAndRegistrationPair,
RegistrationHash,
ResolveOptions,
} from './container'
export {
AwilixError,
AwilixRegistrationError,
AwilixResolutionError,
AwilixTypeError,
} from './errors'
export { InjectionMode, InjectionModeType } from './injection-mode'
export { Lifetime, LifetimeType } from './lifetime'
export { InjectionMode, type InjectionModeType } from './injection-mode'
export { Lifetime, type LifetimeType } from './lifetime'
export {
GlobWithOptions,
ListModulesOptions,
ModuleDescriptor,
type GlobWithOptions,
type ListModulesOptions,
type ModuleDescriptor,
listModules,
} from './list-modules'
export {
BuildResolverOptions,
Disposer,
InjectorFunction,
Resolver,
ResolverOptions,
BuildResolver,
Constructor,
DisposableResolver,
DisposableResolverOptions,
type BuildResolverOptions,
type Disposer,
type InjectorFunction,
type Resolver,
type ResolverOptions,
type BuildResolver,
type Constructor,
type DisposableResolver,
type DisposableResolverOptions,
RESOLVER,
aliasTo,
asClass,
Expand Down

0 comments on commit 1b9ec35

Please sign in to comment.