Skip to content

Commit

Permalink
feat: add conflictCheck
Browse files Browse the repository at this point in the history
  • Loading branch information
czy88840616 committed Mar 1, 2021
1 parent a892223 commit 2e08976
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/decorator/src/annotation/configuration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export interface ResolveFilter {
filter: (module, filter, bindModule) => any;
}

export enum ApplicationScopeEnum {
export enum ContainerScopeEnum {
GLOBAL = 'global',
CONTAINER = 'container',
}
Expand All @@ -21,7 +21,7 @@ export interface InjectionConfigurationOptions {
importConfigs?: string[];
namespace?: string;
directoryResolveFilter?: ResolveFilter[];
applicationContextScope?: ApplicationScopeEnum,
containerScope?: ContainerScopeEnum;
conflictCheck?: boolean;
}

Expand Down

0 comments on commit 2e08976

Please sign in to comment.