DefinitelyTyped/decamelize/decamelize.d.ts

10 lines
372 B
TypeScript

// Type definitions for decamelize
// Project: https://github.com/sindresorhus/decamelize
// Definitions by: Sam Verschueren <https://github.com/samverschueren>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare module "decamelize" {
function decamelize(input: string, separator?: string): string;
namespace decamelize {}
export = decamelize;
}