Files
2023-11-24 22:35:41 +01:00

15 lines
449 B
TypeScript

import { ApplicationContract } from '@ioc:Adonis/Core/Application';
export default class BodyParserProvider {
protected app: ApplicationContract;
constructor(app: ApplicationContract);
static needsApplication: boolean;
/**
* Registers the bodyparser middleware namespace to the container.
*/
register(): void;
/**
* Adding the `file` macro to add support for reading request files.
*/
boot(): void;
}