replace-ext.d.ts added

This commit is contained in:
Deividas Bakanas
2015-12-10 20:16:08 +02:00
parent c953bcda0f
commit 8e9a9ec379

11
replace-ext/replace-ext.d.ts vendored Normal file
View File

@@ -0,0 +1,11 @@
// Type definitions for replace-ext 0.0.1
// Project: https://www.npmjs.com/package/google-maps
// Definitions by: Deividas Bakanas <https://github.com/DeividasBakanas>, Giedrius Grabauskas <https://github.com/GiedriusGrabauskas>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare function replaceExt(npath: string, ext: string): string;
declare module 'replace-ext' {
export = replaceExt;
}