- Prefijo v2: MCH - TRACEABILITY-MASTER.yml creado - Listo para integracion como submodulo Workspace: v2.0.0 | SIMCO: v4.0.0
5 lines
196 B
TypeScript
5 lines
196 B
TypeScript
/**
|
|
* Interface defining possible body parser types, to be used with `NestExpressApplication.useBodyParser()`.
|
|
*/
|
|
export type NestExpressBodyParserType = 'json' | 'urlencoded' | 'text' | 'raw';
|