animate/webGl/my-threejs-test/node_modules/@parcel/package-manager/index.d.ts

23 lines
542 B
TypeScript
Raw Normal View History

2024-06-24 09:24:00 +00:00
import type {FilePath} from '@parcel/types';
import type {FileSystem} from '@parcel/fs';
import type {PackageInstaller, PackageManager} from './lib/types';
export * from './lib/types';
export const Npm: {
new (): PackageInstaller;
};
export const Pnpm: {
new (): PackageInstaller;
};
export const Yarn: {
new (): PackageInstaller;
};
export const MockPackageInstaller: {
new (): PackageInstaller;
};
export const NodePackageManager: {
new (fs: FileSystem, projectRoot: FilePath, installer?: PackageInstaller): PackageManager;
};