update types of uppercaselcase

This commit is contained in:
york yao 2017-06-26 19:49:33 +08:00
parent 3b438428d5
commit 3510b58e50
2 changed files with 2 additions and 0 deletions

View File

@ -5,3 +5,4 @@
declare function upperCamelCase(...args: string[]): string;
export = upperCamelCase;
declare namespace upperCamelCase { }

View File

@ -1,4 +1,5 @@
import upperCamelCase = require('uppercamelcase');
import * as upperCamelCase2 from "uppercamelcase";
upperCamelCase('foo-bar');
//=> FooBar