UNPKG

234 BTypeScriptView Raw
1/**
2 * camelCase('foo-bar');
3 * // => 'fooBar'
4 * @param s
5 */
6export declare function camelCase(s: string): string;
7/**
8 * kebabCase('fooBar');
9 * // => 'foo-bar'
10 * @param s
11 */
12export declare function kebabCase(s: string): string;