UNPKG

gen-jhipster

Version:

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

51 lines (50 loc) 3.14 kB
/** * Copyright 2013-2026 the original author or authors from the JHipster project. * * This file is part of the JHipster project, see https://www.jhipster.tech/ * for more information. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import type { ComposeOptions } from 'yeoman-generator'; import BaseGenerator from '../base/index.ts'; import { PRIORITY_NAMES } from '../base-core/priorities.ts'; import type { GenericTask } from '../base-core/types.ts'; import type GeneratorsByNamespace from '../types.ts'; import type { SimpleTaskTypes } from './tasks.ts'; import type { Application as BaseSimpleApplicationApplication, Config as BaseSimpleApplicationConfig, Features as BaseSimpleApplicationFeatures, Options as BaseSimpleApplicationOptions, Source as BaseSimpleApplicationSource } from './types.ts'; /** * This is the base class for a generator that generates entities. */ export default class BaseSimpleApplicationGenerator<Application extends BaseSimpleApplicationApplication = BaseSimpleApplicationApplication, Config extends BaseSimpleApplicationConfig = BaseSimpleApplicationConfig, Options extends BaseSimpleApplicationOptions = BaseSimpleApplicationOptions, Source extends BaseSimpleApplicationSource = BaseSimpleApplicationSource, Features extends BaseSimpleApplicationFeatures = BaseSimpleApplicationFeatures, Tasks extends SimpleTaskTypes<Application, Source> = SimpleTaskTypes<Application, Source>> extends BaseGenerator<Config, Options, Source, Features, Tasks> { #private; constructor(args?: string[], options?: Options, features?: Features); get context(): Application; /** * JHipster config with default values fallback */ get jhipsterConfigWithDefaults(): Readonly<Config>; /** * @deprecated use dependsOnBootstrap('common'), dependsOnBootstrap('base-application') or dependsOnBootstrap('base-simple-application') */ dependsOnBootstrapApplicationBase(options?: ComposeOptions<GeneratorsByNamespace['jhipster:base-application:bootstrap']>): Promise<GeneratorsByNamespace['jhipster:base-application:bootstrap']>; getArgsForPriority(priorityName: (typeof PRIORITY_NAMES)[keyof typeof PRIORITY_NAMES]): any; /** * @protected */ protected getTaskFirstArgForPriority(priorityName: (typeof PRIORITY_NAMES)[keyof typeof PRIORITY_NAMES]): any; /** * Utility method to get typed objects for autocomplete. */ asBootstrapApplicationTaskGroup<const T extends Record<string, GenericTask<this, Tasks['BootstrapApplicationTaskParam']>>>(taskGroup: T): Record<keyof T, GenericTask<any, Tasks['BootstrapApplicationTaskParam']>>; }