import { RouteType } from '../enums/route-type'; import { RouteComparison } from '../enums/route-comparison'; import { HandlerInterface } from './handler.interface'; export interface RouteInterface { path: string; type?: RouteType; comparison?: RouteComparison; noSession?: boolean; handler?: (params: HandlerInterface) => Promise; }