UNPKG

401 BTypeScriptView Raw
1/**
2 * Converts strings from something to camel case
3 * http://stackoverflow.com/questions/10425287/convert-dash-separated-string-to-camelcase
4 */
5export 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 */
10export declare function deCamelCase(str: string): string;