mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* [decamelize] add linting & enable strict null checks * [decamelize] reintroduce namespace to support import * syntax to avoid a breaking change for users
10 lines
359 B
TypeScript
10 lines
359 B
TypeScript
// Type definitions for decamelize 1.2
|
|
// Project: https://github.com/sindresorhus/decamelize
|
|
// Definitions by: Sam Verschueren <https://github.com/samverschueren>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
export = decamelize;
|
|
|
|
declare function decamelize(input: string, separator?: string): string;
|
|
declare namespace decamelize {}
|