Files
DefinitelyTyped/types/uppercamelcase/index.d.ts
2017-06-26 19:49:33 +08:00

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 { }