Files
evento/node_modules/@nestjs/platform-express/interfaces/nest-express-body-parser.interface.d.ts
2026-03-18 14:55:56 -03:00

5 lines
196 B
TypeScript

/**
* Interface defining possible body parser types, to be used with `NestExpressApplication.useBodyParser()`.
*/
export type NestExpressBodyParserType = 'json' | 'urlencoded' | 'text' | 'raw';