mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-03 23:36:21 +02:00
15 lines
449 B
TypeScript
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;
|
|
}
|