Initial commit - Event Planner application
This commit is contained in:
7
dist/core/workflows/base-workflow.d.ts
vendored
Normal file
7
dist/core/workflows/base-workflow.d.ts
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
import { Logger } from '@nestjs/common';
|
||||
export declare abstract class BaseWorkflow {
|
||||
protected readonly logger: Logger;
|
||||
abstract execute(...args: any[]): Promise<any>;
|
||||
protected logExecution(message: string, context?: any): void;
|
||||
}
|
||||
//# sourceMappingURL=base-workflow.d.ts.map
|
||||
Reference in New Issue
Block a user