UNPKG

st-open-api

Version:

Generates API client SDKs from an OpenAPI specification written in OpenAPI version 3.x.x

3 lines (2 loc) 175 B
export type TextCase = 'CamelCase' | 'SnakeCase' | 'PascalCase' | 'KebabCase'; export declare const formatText: (str: string, from: TextCase | 'ANY', to: TextCase) => string;