@samchon/openapi
Version:
OpenAPI definitions and converters for 'typia' and 'nestia'.
8 lines (7 loc) • 435 B
text/typescript
import type { HttpLlm } from "../HttpLlm";
import { IHttpResponse } from "../structures/IHttpResponse";
import { ILlmSchema } from "../structures/ILlmSchema";
export declare namespace HttpLlmFunctionFetcher {
const execute: <Model extends ILlmSchema.Model>(props: HttpLlm.IFetchProps<Model>) => Promise<unknown>;
const propagate: <Model extends ILlmSchema.Model>(props: HttpLlm.IFetchProps<Model>) => Promise<IHttpResponse>;
}