UNPKG

@nestjs/platform-express

Version:

Nest - modern, fast, powerful node.js web framework (@platform-express)

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