UNPKG

@nestjs/core

Version:

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

7 lines (6 loc) 320 B
import { Controller } from '@nestjs/common/interfaces/index'; import { Metatype } from '@nestjs/common/interfaces/metatype.interface'; export interface RouterExplorer { explore(instance: Controller, metatype: Metatype<Controller>, module: string): any; fetchRouterPath(metatype: Metatype<Controller>): string; }