UNPKG

homebridge-config-ui-x

Version:

A web based management, configuration and control platform for Homebridge

11 lines (10 loc) 287 B
import { RequestMethod } from '../../enums'; import { Type } from '../type.interface'; export interface RouteInfo { path: string; method: RequestMethod; } export interface MiddlewareConfiguration<T = any> { middleware: T; forRoutes: (Type<any> | string | RouteInfo)[]; }