UNPKG

@schemifyjs/core

Version:

Core module of the SchemifyJS CLI. Provides reusable functions such as scaffolding, template handling, and general utilities.

10 lines (9 loc) 325 B
import { PackageManagerType } from '@schemifyjs/types'; import { validatePackageManager } from './package-manager.validator.js'; export declare function packageManagerQuestion(): { type: string; name: string; message: string; choices: PackageManagerType.Npm[]; validate: typeof validatePackageManager; };