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