Type definitions and tests for path-case

This commit is contained in:
Sam Saint-Pettersen
2015-08-04 14:04:25 +01:00
parent b9afb4c0f2
commit 84a8620a82
+9
View File
@@ -0,0 +1,9 @@
// Type definitions for path-case
// Project: https://github.com/blakeembrey/path-case
// Definitions by: Sam Saint-Pettersen <https://github.com/stpettersens>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare module "path-case" {
function pathCase(string: string, locale?: string): string;
export = pathCase;
}