camelCase(小驼峰)或 PascalCase(大驼峰)字符串替换为 kebab-case

例如:

type FooBarBaz = KebabCase<"FooBarBaz">
const foobarbaz: FooBarBaz = "foo-bar-baz"
 
type DoNothing = KebabCase<"do-nothing">
const doNothing: DoNothing = "do-nothing"