UNPKG

nestjs-resilience

Version:

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

7 lines (6 loc) 301 B
import { BaseCommand, ReturnTypeOfRun } from './base.command'; import { Observable } from 'rxjs'; export declare abstract class ResilienceObservableCommand extends BaseCommand { abstract run(...args: any[]): Observable<any>; execute(...args: Parameters<this['run']>): ReturnTypeOfRun<this>; }