Files
DefinitelyTyped/camelcase/camelcase.d.ts
Sam Verschueren cf21ce49f0 add camelcase
2016-01-13 08:42:58 +01:00

9 lines
317 B
TypeScript

// Type definitions for camelcase
// Project: https://github.com/sindresorhus/camelcase
// Definitions by: Sam Verschueren <https://github.com/samverschueren>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare module "camelcase" {
export default function camelcase(...args: string[]): string;
}