string.d.ts 234 B

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