@feroomjs/npm-fetcher
Version:
@feroomjs/npm-fetcher
8 lines (4 loc) • 321 B
TypeScript
/// <reference types="node" />
export declare function getNpmPackageFiles(registryUrl: string, packageName: string, version?: string): Promise<Record<string, string | Buffer>>;
export declare function getNpmPackageVersion(registryUrl: string, packageName: string, version?: string): Promise<string>;
export { }