camel-case.d.ts 401 B

12345678910
  1. /**
  2. * Converts strings from something to camel case
  3. * http://stackoverflow.com/questions/10425287/convert-dash-separated-string-to-camelcase
  4. */
  5. export declare function camelCase(str: string): string;
  6. /**
  7. * Converts strings from camel case to words
  8. * http://stackoverflow.com/questions/7225407/convert-camelcasetext-to-camel-case-text
  9. */
  10. export declare function deCamelCase(str: string): string;