UNPKG

@vortex-js/core

Version:

A simple and powerful role-based access control (RBAC) middleware for Express.js, designed to be easy to use and integrate with your existing applications. It provides a flexible way to manage user permissions and roles, making it ideal for building secur

11 lines (10 loc) 362 B
import { PostmanConfig } from "../types"; import Routes from "./Routes"; declare class PostmanController { postman?: PostmanConfig; routes: Routes; constructor(routes?: Routes, postman?: PostmanConfig); generatePostmanCollection(filePath: string): void; generatePostmanEnvironment(filePath: string): void; } export default PostmanController;