UNPKG

@dxdeveloperexperience/hygie

Version:

Hygie is an easy-to-use Open-Source REST API allowing you to interact with GIT events. This NestJS API expose a set of customizable rules to automate your project's life cycle.

13 lines (10 loc) 276 B
import { RuleResult } from '../rules/ruleResult'; import { CallbackType } from './runnables.service'; export abstract class Runnable { name: string; abstract async run( callbackType: CallbackType, ruleResult: RuleResult, ...args: any[] ): Promise<void>; }