From 8e9a9ec3794e89a491a9b0e363da15749474578b Mon Sep 17 00:00:00 2001 From: Deividas Bakanas Date: Thu, 10 Dec 2015 20:16:08 +0200 Subject: [PATCH] replace-ext.d.ts added --- replace-ext/replace-ext.d.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 replace-ext/replace-ext.d.ts diff --git a/replace-ext/replace-ext.d.ts b/replace-ext/replace-ext.d.ts new file mode 100644 index 000000000..e76e3391c --- /dev/null +++ b/replace-ext/replace-ext.d.ts @@ -0,0 +1,11 @@ +// Type definitions for replace-ext 0.0.1 +// Project: https://www.npmjs.com/package/google-maps +// Definitions by: Deividas Bakanas , Giedrius Grabauskas +// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped + + +declare function replaceExt(npath: string, ext: string): string; + +declare module 'replace-ext' { + export = replaceExt; +}