mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
10 lines
364 B
TypeScript
10 lines
364 B
TypeScript
// Type definitions for npm-cache-filename 1.0
|
|
// Project: https://github.com/npm/npm-cache-filename
|
|
// Definitions by: Florian Keller <https://github.com/ffflorian>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare function cf(root: string): (url: string) => string;
|
|
declare function cf(root: string, url: string): string;
|
|
|
|
export = cf;
|