Files
DefinitelyTyped/types/camelcase/index.d.ts
2017-03-24 14:27:52 -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;