UNPKG

lux-framework

Version:

Build scalable, Node.js-powered REST APIs with almost no code.

12 lines (10 loc) 272 B
// @flow import type Controller from '../../controller'; import type { Router$Namespace } from '../index'; export type Namespace$opts = { name: string; path: string; namespace?: Router$Namespace; controller: Controller; controllers: Map<string, Controller>; };