You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
315 B
12 lines
315 B
/**
|
|
* Convert str to kebab-case
|
|
* @param str input string
|
|
* @returns output string
|
|
*/
|
|
export declare function toKebabCase(str: string): string;
|
|
/**
|
|
* Convert str to UpperCamelCase
|
|
* @param str import string
|
|
* @returns {string} output string
|
|
*/
|
|
export declare function toUpperCamelCase(str: string): string;
|
|
|