File size: 196 Bytes
cfbbc1a
 
 
 
1
2
3
4
5
/**
 * Interface defining possible body parser types, to be used with `NestExpressApplication.useBodyParser()`.
 */
export type NestExpressBodyParserType = 'json' | 'urlencoded' | 'text' | 'raw';