Type definitions and tests for upper-case

This commit is contained in:
Sam Saint-Pettersen
2015-08-18 19:04:19 +01:00
parent 832c51db81
commit 3aba989e92
+9
View File
@@ -0,0 +1,9 @@
// Type definitions for upper-case
// Project: https://github.com/blakeembrey/upper-case
// Definitions by: Sam Saint-Pettersen <https://github.com/stpettersens>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare module "upper-case" {
function upperCase(string: any, locale?: string): string;
export = upperCase;
}