imajin/node_modules/@nestjs/cli/lib/utils/formatting.d.ts
2026-01-10 04:52:11 -08:00

8 lines
293 B
TypeScript

/**
*
* @param str
* @returns formated string
* @description normalizes input to supported path and file name format.
* Changes camelCase strings to kebab-case, replaces spaces with dash and keeps underscores.
*/
export declare function normalizeToKebabOrSnakeCase(str: string): string;