UNPKG

932 BTypeScriptView Raw
1/**
2 * @license
3 * Copyright Google LLC All Rights Reserved.
4 *
5 * Use of this source code is governed by an MIT-style license that can be
6 * found in the LICENSE file at https://angular.io/license
7 */
8declare module '@yarnpkg/lockfile' {
9 function parse(data: string): Record<string, any>;
10}
11declare module 'ini' {
12 function parse(data: string): Record<string, any>;
13}
14declare module 'npm-pick-manifest' {
15 function pickManifest(metadata: import('../utilities/package-metadata').PackageMetadata, selector: string): import('../utilities/package-metadata').PackageManifest;
16 export = pickManifest;
17}
18declare module 'pacote' {
19 function manifest(specifier: string, options: Record<string, unknown>): Promise<{
20 name: string;
21 version: string;
22 }>;
23 function packument(specifier: string, options: Record<string, unknown>): Promise<import('../utilities/package-metadata').NpmRepositoryPackageJson>;
24}