Files
parsshop-back/node_modules/@nestjs/platform-express/interfaces/nest-express-body-parser.interface.d.ts
2026-03-26 12:25:46 +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';