nestjs-aborter
Version:
Automatic request cancellation and timeout handling for NestJS applications
9 lines (8 loc) • 520 B
TypeScript
export { AborterModule } from './aborter.module';
export { AborterInterceptor } from './interceptors/aborter.interceptor';
export { AborterFilter } from './filters/aborter.filter';
export { AborterSignal, AborterReason } from './decorators/aborter.decorator';
export { AborterGuard } from './guards/aborter.guard';
export { withAbort, AbortError } from './utils';
export type { RequestWithAbortController } from './interceptors/aborter.interceptor';
export type { AborterOptions } from './interfaces/aborter.interface';