@opra/common
Version:
Opra common package
13 lines (12 loc) • 317 B
TypeScript
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>;
}