mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
7 lines
236 B
TypeScript
7 lines
236 B
TypeScript
import cf = require('npm-cache-filename');
|
|
|
|
cf('/tmp/cache', 'https://registry.npmjs.org:1234/foo/bar'); // $ExpectType string
|
|
|
|
const getFile = cf('/tmp/cache');
|
|
getFile('https://registry.npmjs.org:1234/foo/bar'); // $ExpectType string
|