mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-21 05:20:24 +08:00
10 lines
335 B
TypeScript
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;
|