mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
11 lines
351 B
TypeScript
11 lines
351 B
TypeScript
// Type definitions for camelcase
|
|
// Project: https://github.com/sindresorhus/camelcase
|
|
// Definitions by: Sam Verschueren <https://github.com/samverschueren>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare module "camelcase" {
|
|
function camelcase(...args: string[]): string;
|
|
namespace camelcase {}
|
|
export = camelcase;
|
|
}
|