Type definitions and tests for upper-case-first

This commit is contained in:
Sam Saint-Pettersen
2015-08-21 14:35:27 +01:00
parent 16af44634f
commit 712b906803
+9
View File
@@ -0,0 +1,9 @@
// Type definitions for upper-case-first
// Project: https://github.com/blakeembrey/upper-case-first
// Definitions by: Sam Saint-Pettersen <https://github.com/stpettersens>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare module "upper-case-first" {
function upperCaseFirst(string: string): string;
export = upperCaseFirst;
}