generator-begcode
Version:
Spring Boot + Angular/React/Vue in one handy generator
15 lines (14 loc) • 650 B
TypeScript
import type { CommandConfigScope, JHipsterConfigs } from './types.js';
export declare function loadCommandConfigsIntoApplication<Context>(this: Context, options: {
source: Record<string, any>;
application: Record<string, any>;
commandsConfigs: JHipsterConfigs;
}): void;
export declare function loadCommandConfigsIntoGenerator<Context>(this: Context, options: {
commandsConfigs: JHipsterConfigs;
}): void;
export declare function loadCommandConfigsKeysIntoTemplatesContext<Context>(this: Context, options: {
templatesContext: Record<string, any>;
commandsConfigs: JHipsterConfigs;
scopes?: CommandConfigScope[];
}): void;