UNPKG

@schemifyjs/types

Version:

Tipos compartidos entre los paquetes CLI y Core de SchemifyJS

15 lines (14 loc) 325 B
export interface NewSchemify { name: string; outputPath?: string; } export declare enum FrameworkType { NestJS = "nestjs" } export declare enum PackageManagerType { Npm = "npm" } export interface ApplicationOptions extends NewSchemify { framework: FrameworkType; packageManager: PackageManagerType; }