From 84a8620a8234b471e76ff57ff2c350642a18ca56 Mon Sep 17 00:00:00 2001 From: Sam Saint-Pettersen Date: Tue, 4 Aug 2015 14:04:25 +0100 Subject: [PATCH] Type definitions and tests for path-case --- path-case/path-case.d.ts | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 path-case/path-case.d.ts diff --git a/path-case/path-case.d.ts b/path-case/path-case.d.ts new file mode 100644 index 000000000..bb577cac8 --- /dev/null +++ b/path-case/path-case.d.ts @@ -0,0 +1,9 @@ +// Type definitions for path-case +// Project: https://github.com/blakeembrey/path-case +// Definitions by: Sam Saint-Pettersen +// Definitions: https://github.com/borisyankov/DefinitelyTyped + +declare module "path-case" { + function pathCase(string: string, locale?: string): string; + export = pathCase; +}