UNPKG

reest

Version:

A library inspired by NestJS's elegance, specifically designed for efficient serverless API development on AWS Lambda. It streamlines the creation of microservices with automated Swagger documentation and enhanced decorator-based middleware support, makin

15 lines (14 loc) 266 B
export interface OpenapiOptions { documentationPath?: string; openapi?: string; info?: { description?: string; version?: string; title?: string; }; host?: string; basePath?: string; schemes?: string[]; definitions?: any; paths?: any; }