UNPKG

honestjs

Version:

HonestJS - a modern web framework built on top of Hono

9 lines (8 loc) 348 B
import type { ModuleOptions } from '../interfaces'; /** * Decorator that marks a class as a module * Modules are used to organize the application structure and dependencies * @param options - Configuration options for the module * @returns A class decorator function */ export declare function Module(options?: ModuleOptions): ClassDecorator;