9 lines
452 B
TypeScript
9 lines
452 B
TypeScript
export { lowerFirst, upperFirst, camelCase } from 'lodash-es';
|
|
export declare const kebabCase: (s: string) => string;
|
|
export declare const pascalCase: (s: string) => string;
|
|
export declare const constantCase: (s: string) => string;
|
|
export declare const dotCase: (s: string) => string;
|
|
export declare const pathCase: (s: string) => string;
|
|
export declare const sentenceCase: (s: string) => string;
|
|
export declare const titleCase: (s: string) => string;
|