@moostjs/event-wf 0.2.34 → 0.2.35

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.
package/dist/index.d.ts CHANGED
@@ -36,10 +36,20 @@ export declare interface TWfHandlerMeta {
36
36
 
37
37
  export { useCliContext }
38
38
 
39
- export declare function WfFlow(path?: string): MethodDecorator;
39
+ export declare const WfCtx: (name: string) => ParameterDecorator & PropertyDecorator;
40
40
 
41
- export declare function WfSchema<T>(schema: TWorkflowSchema<T>): MethodDecorator;
41
+ export declare const WfIndexes: () => ParameterDecorator & PropertyDecorator;
42
42
 
43
- export declare function WfStep(path?: string): MethodDecorator;
43
+ export declare const WfInput: (name: string) => ParameterDecorator & PropertyDecorator;
44
+
45
+ export declare function WFlow(path?: string): MethodDecorator;
46
+
47
+ export declare const WfResume: () => ParameterDecorator & PropertyDecorator;
48
+
49
+ export declare const WfSchemaId: () => ParameterDecorator & PropertyDecorator;
50
+
51
+ export declare function WSchema<T>(schema: TWorkflowSchema<T>): MethodDecorator;
52
+
53
+ export declare function WStep(path?: string): MethodDecorator;
44
54
 
45
55
  export { }