import { Handler } from 'express'; /** * @public */ export interface RootHttpRouterService { /** * Registers a handler at the root of the backend router. * The path is required and may not be empty. */ use(path: string, handler: Handler): void; }