Files
DefinitelyTyped/camelcase/index.d.ts
2016-04-27 21:30:22 -07:00

10 lines
335 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 function camelcase(...args: string[]): string;
declare namespace camelcase { }
export = camelcase;