UNPKG

@igli.kokici/st-open-api

Version:

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

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