mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
12 lines
364 B
TypeScript
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;
|
|
}
|