diff --git a/src/features/decorators/common.ts b/src/features/decorators/common.ts index 8d76b37..07783bb 100644 --- a/src/features/decorators/common.ts +++ b/src/features/decorators/common.ts @@ -27,8 +27,8 @@ export type Decorator< export type GenericDecorator = Decorator; -export interface EffectFeatureOptions { - effect: Computable; +export interface EffectFeatureOptions { + effect: Computable; } export type EffectFeature = Replace< @@ -36,9 +36,9 @@ export type EffectFeature = Replace< { effect: GetComputableType } >; -export type GenericEffectFeature = Replace< +export type GenericEffectFeature = Replace< EffectFeature, - { effect: ProcessedComputable } + { effect: ProcessedComputable } >; /**