/** * Pure deterministic case + plural transforms shared by the compiler * (canonical names) and projections (physical DB/route naming). */ /** Split an identifier into words on camel/Pascal/snake/kebab boundaries. */ export declare function splitWords(s: string): string[]; export declare function toSnakeCase(s: string): string; export declare function toKebabCase(s: string): string; export declare function toPascalCase(s: string): string; export declare function toCamelCase(s: string): string; export declare function pluralize(word: string): string; //# sourceMappingURL=naming-case.d.ts.map