framework-do-dede 5.4.6 → 5.4.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -9,7 +9,7 @@ export declare abstract class UseCase<UseCaseInput, UseCaseOutput, UseCaseContex
|
|
|
9
9
|
abstract execute(): Promise<UseCaseOutput>;
|
|
10
10
|
}
|
|
11
11
|
type UseCaseConstructor = new (...args: any[]) => UseCase<any, any>;
|
|
12
|
-
type HookConstructor = new () => Hook<any, any>;
|
|
12
|
+
type HookConstructor = new (...args: any[]) => Hook<any, any>;
|
|
13
13
|
type HookPosition = 'before' | 'after';
|
|
14
14
|
interface HookOptions {
|
|
15
15
|
runOnError?: boolean;
|