UNPKG

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.

5 lines (4 loc) 204 B
/** * Response handler type. */ export type ResponseHandlerType = 'success-code' | 'content-type' | 'header' | 'rendered-template' | 'redirect' | 'location' | 'on-null' | 'on-undefined' | 'authorized';