gen-jhipster
Version:
VHipster - Spring Boot + Angular/React/Vue in one handy generator
8 lines (7 loc) • 310 B
TypeScript
export declare function customCamelCase(string: string): string;
/**
* Pluralizes a string. If the plural is the same as the singular, it adds an "s" or "es" suffix at the end of the string to avoid conflicts.
*/
export declare function pluralize(string: string, { force }: {
force: boolean;
}): string;