UNPKG

@opra/common

Version:
13 lines (12 loc) 317 B
import type { Api } from '../api.interface.js'; import type { HttpController } from './http-controller.interface.js'; /** * HTTP Api * @interface HttpApi */ export interface HttpApi extends Api { transport: 'http'; description?: string; url?: string; controllers: Record<string, HttpController>; }