1 | import { Provider } from '@loopback/core';
|
2 | import { Middleware } from '@loopback/express';
|
3 | import { RequestBodyParser } from '../body-parsers';
|
4 | import { AjvFactory, ParseParams, ValidationOptions } from '../types';
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 | export declare class ParseParamsProvider {
|
11 | static value(requestBodyParser: RequestBodyParser, validationOptions: ValidationOptions | undefined, ajvFactory: AjvFactory): ParseParams;
|
12 | }
|
13 | export declare class ParseParamsMiddlewareProvider implements Provider<Middleware> {
|
14 | value(): Middleware;
|
15 | }
|