UNPKG

@nestjs/common

Version:

Nest - modern, fast, powerful node.js web framework (@common)

7 lines (6 loc) 267 B
import { NestInterceptor } from './features/nest-interceptor.interface'; import { CanActivate } from './features/can-activate.interface'; export interface ConfigurationProvider { getGlobalInterceptors(): NestInterceptor[]; getGlobalGuards(): CanActivate[]; }