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