Files
DefinitelyTyped/types/camelcase/index.d.ts
T

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;