typenexus
Version:
TypeNexus is a good tool for API encapsulation and management. It provides a clean and lightweight way to package TypeORM functionality, helping you build applications faster while reducing template code redundancy and type conversion work.
23 lines (22 loc) • 328 B
text/typescript
/**
* Controller action's parameter type.
*/
export type ParamType =
| 'data-source'
| 'request'
| 'response'
| 'param'
| 'params'
| 'body'
| 'cookie'
| 'cookies'
| 'query'
| 'queries'
| 'current-user'
| 'body-param'
| 'header'
| 'headers'
| 'session'
| 'session-param'
| 'file'
| 'files';