create-expo-module
Version:
The script to create the Expo module
5 lines (4 loc) • 339 B
TypeScript
export type PackageManagerName = 'npm' | 'pnpm' | 'yarn' | 'bun';
/** Determine which package manager to use for installing dependencies based on how the process was started. */
export declare function resolvePackageManager(): PackageManagerName;
export declare function formatRunCommand(manager: PackageManagerName, cmd: string): string;