react-viewport-utils
Version:
Utility components for working with the viewport in react
22 lines (18 loc) • 474 B
TypeScript
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, installer?: PackageInstaller): PackageManager;
};