UNPKG

generator-begcode

Version:

Spring Boot + Angular/React/Vue in one handy generator

8 lines (7 loc) 405 B
import type JDLObject from './jdl-object.js'; export type JdlObjectWrapper = { jdlObject: JDLObject; applicationName?: string; applicationType?: 'monolith' | 'microservice' | 'gateway' | 'commonmodule'; databaseType?: 'sql' | 'mysql' | 'mariadb' | 'postgresql' | 'mssql' | 'oracle' | 'h2Disk' | 'h2Memory' | 'mongodb' | 'cassandra' | 'couchbase' | 'neo4j' | 'no'; } & Record<string, any>;