mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 12:56:46 +08:00
* [uppercamelcase] add linting & enable strict null checks * [uppercamelcase] reintroduce namespace to support import * syntax to avoid a breaking change for users
10 lines
355 B
TypeScript
10 lines
355 B
TypeScript
// Type definitions for uppercamelcase 3.0
|
|
// Project: https://github.com/samverschueren/uppercamelcase
|
|
// Definitions by: York Yao <https://github.com/plantain-00>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
export = upperCamelCase;
|
|
|
|
declare function upperCamelCase(...args: string[]): string;
|
|
declare namespace upperCamelCase {}
|