DefinitelyTyped/replace-ext/replace-ext.d.ts
Deividas Bakanas 657bbef0d3 Comments edited
2015-12-15 17:01:31 +02:00

12 lines
364 B
TypeScript

// Type definitions for replace-ext 0.0.1
// Project: https://github.com/wearefractal/replace-ext
// Definitions by: Deividas Bakanas <https://github.com/DeividasBakanas>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare function replaceExt(npath: string, ext: string): string;
declare module 'replace-ext' {
export = replaceExt;
}