UNPKG

@samchon/openapi

Version:

Universal OpenAPI to LLM function calling schemas. Transform any Swagger/OpenAPI document into type-safe schemas for OpenAI, Claude, Qwen, and more.

9 lines (8 loc) 309 B
export declare namespace NamingConvention { function snake(str: string): string; function camel(str: string): string; function pascal(str: string): string; const capitalize: (str: string) => string; const variable: (str: string) => boolean; const reserved: (str: string) => boolean; }