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; +}