UNPKG

@samchon/openapi

Version:

OpenAPI definitions and converters for 'typia' and 'nestia'.

12 lines (11 loc) 585 B
import { IHttpLlmApplication } from "../structures/IHttpLlmApplication"; import { IHttpMigrateApplication } from "../structures/IHttpMigrateApplication"; import { ILlmSchema } from "../structures/ILlmSchema"; export declare namespace HttpLlmComposer { const application: <Model extends ILlmSchema.Model>(props: { model: Model; migrate: IHttpMigrateApplication; options: IHttpLlmApplication.IOptions<Model>; }) => IHttpLlmApplication<Model>; const shorten: <Model extends ILlmSchema.Model>(app: IHttpLlmApplication<Model>, limit?: number) => void; }