DefinitelyTyped/types/camelcase/index.d.ts
Dimitri Benin 81e0839d0d [camelcase] add linting & enable strict null checks (#18846)
* [camelcase] add linting & enable strict null checks

* [camelcase] reintroduce namespace to support import * syntax to avoid a breaking change for users
2017-08-11 10:20:02 -07:00

10 lines
338 B
TypeScript

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