import type { AnyBody } from '../types/AnyBody'; import type { AnyHeaders } from '../types/AnyHeaders'; import type { AnyParams } from '../types/AnyParams'; import type { AnyQuery } from '../types/AnyQuery'; import type { AnyStatus } from '../types/AnyStatus'; import type { HttpApi } from '../types/HttpApi'; /** * If name is omitted, it will be generated as: * ``` * `HTTP ${api.routeType}:${api.method} ${api.url}` * ``` */ export declare const makeHttpApi: (api: Omit, "isYaschemaApi" | "isYaschemaHttpApi" | "name"> & { name?: string; }) => HttpApi; //# sourceMappingURL=make-http-api.d.ts.map