mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-06-03 19:42:27 +08:00
9 lines
351 B
TypeScript
9 lines
351 B
TypeScript
// Type definitions for uppercamelcase
|
|
// Project: https://github.com/samverschueren/uppercamelcase
|
|
// Definitions by: York Yao <https://github.com/plantain-00>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare function upperCamelCase(...args: string[]): string;
|
|
export = upperCamelCase;
|
|
declare namespace upperCamelCase { }
|