8 lines
293 B
TypeScript
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;
|