DefinitelyTyped/decamelize/index.d.ts
2016-04-27 21:30:22 -07:00

10 lines
356 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 function decamelize(input: string, separator?: string): string;
declare namespace decamelize { }
export = decamelize;