@scalar/oas-utils
Version:
Open API spec and Yaml handling utilities
15 lines • 463 B
TypeScript
/**
* A collection of string manipulation helper methods
*/
/**
* Converts a camelCase string to Title Words with spaces
*
* @param camelStr - MUST be in camelCase or this might not work
*/
export declare const camelToTitleWords: (camelStr: string) => string;
/**
* Capitalize first letter
* You should normally do this in css, only use this if you have to
*/
export declare const capitalize: (str: string) => string;
//# sourceMappingURL=string.d.ts.map