Files
DefinitelyTyped/replace-ext/replace-ext.d.ts
2015-12-10 20:16:08 +02:00

12 lines
423 B
TypeScript

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