Skip to content

Commit

Permalink
fix(mwcp): var typo fix from @mwcp/cache
Browse files Browse the repository at this point in the history
  • Loading branch information
waitingsong committed Feb 25, 2024
1 parent d6c41a9 commit 63637e7
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import {
METHOD_KEY_CacheEvict,
METHOD_KEY_CachePut,
METHOD_KEY_Cacheable,
cacheableClassIgnoreIfMethodDecortaorKeys,
cacheableMethodIgnoreIfMethodDecortaorKeys,
cacheableClassIgnoreIfMethodDecoratorKeys,
cacheableMethodIgnoreIfMethodDecoratorKeys,
} from '@mwcp/cache'
import {
CustomDecoratorFactoryParam,
Expand Down Expand Up @@ -91,8 +91,8 @@ export function Transactional<M extends MethodType | undefined = undefined>(
decoratorKey: dkey,
decoratorArgs: cacheOptions,
enableClassDecorator: false,
classIgnoreIfMethodDecortaorKeys: cacheableClassIgnoreIfMethodDecortaorKeys,
methodIgnoreIfMethodDecortaorKeys: cacheableMethodIgnoreIfMethodDecortaorKeys,
classIgnoreIfMethodDecoratorKeys: cacheableClassIgnoreIfMethodDecoratorKeys,
methodIgnoreIfMethodDecoratorKeys: cacheableMethodIgnoreIfMethodDecoratorKeys,
}
regCustomDecorator(target, propertyName, descriptor, opts2)
}
Expand Down

0 comments on commit 63637e7

Please sign in to comment.