UNPKG

@theguild/components

Version:
14 lines (11 loc) 303 B
import { ReactElement } from 'react'; type Command = { name: string; cmd: 'add' | 'run' | 'install' | 'init'; isNpx?: boolean; isGlobal?: boolean; }; declare const LegacyPackageCmd: ({ packages, }: { packages: (string | Command)[]; }) => ReactElement; export { LegacyPackageCmd };