1 | import { Context, Provider } from '@loopback/core';
|
2 | import { Middleware } from '@loopback/express';
|
3 | import { HttpHandler } from '../http-handler';
|
4 | import { FindRoute } from '../types';
|
5 | export declare class FindRouteProvider {
|
6 | static value(context: Context, handler: HttpHandler): FindRoute;
|
7 | }
|
8 | export declare class FindRouteMiddlewareProvider implements Provider<Middleware> {
|
9 | value(): Middleware;
|
10 | }
|