Type definitions and tests for pascal-case

This commit is contained in:
Sam Saint-Pettersen
2015-08-03 16:38:57 +01:00
parent 1f3eb8b909
commit cc6ccf4737
+9
View File
@@ -0,0 +1,9 @@
// Type definitions for pascal-case
// Project: https://github.com/blakeembrey/pascal-case
// Definitions by: Sam Saint-Pettersen <https://github.com/stpettersens>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare module "pascal-case" {
function pascalCase(string: string, locale?: string): string;
export = pascalCase;
}