Co-authored-by: Andrew Eisenberg <aeisenberg@github.com> Co-authored-by: Henry Mercer <henrymercer@github.com>
5 lines
305 B
TypeScript
5 lines
305 B
TypeScript
import { Options } from "pascal-case";
|
|
export { Options };
|
|
export declare function camelCaseTransform(input: string, index: number): string;
|
|
export declare function camelCaseTransformMerge(input: string, index: number): string;
|
|
export declare function camelCase(input: string, options?: Options): string;
|