UNPKG

@d3vtool/ex-frame

Version:

This library enhances Express.js by providing a more organized structure for web API projects, along with improved control and error handling capabilities.

9 lines (8 loc) 332 B
import { TConstructor } from "./ex-http-methods"; import { type Request } from "express"; export declare function getStaticMethods(cls: TConstructor): string[]; export declare function getFunctionArgs(fn: any): string[]; export declare function getClassArgs(fn: any): string[]; export type ERequest = Request & { scope: any; };