UNPKG

nestjs-resilience

Version:

A module for improving the reliability and fault-tolerance of your NestJS applications

6 lines (5 loc) 253 B
import { BaseCommand, ReturnTypeOfRun } from './base.command'; export declare abstract class ResilienceCommand extends BaseCommand { abstract run(...args: any[]): Promise<any>; execute(...args: Parameters<this['run']>): ReturnTypeOfRun<this>; }