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) 297 B
import { FrameworkType } from '@schemifyjs/types'; import { validateFramework } from './framework.validator.js'; export declare function frameworkQuestion(): { type: string; name: string; message: string; choices: FrameworkType.NestJS[]; validate: typeof validateFramework; };