UNPKG

@antv/g2

Version:

the Grammar of Graphics in Javascript

13 lines (12 loc) 234 B
/** * camelCase('foo-bar'); * // => 'fooBar' * @param s */ export declare function camelCase(s: string): string; /** * kebabCase('fooBar'); * // => 'foo-bar' * @param s */ export declare function kebabCase(s: string): string;