gen-jhipster
Version:
VHipster - Spring Boot + Angular/React/Vue in one handy generator
18 lines (17 loc) • 637 B
TypeScript
import type CoreGenerator from '../../base-core/generator.ts';
/**
* Check that Docker exists.
* @this {import('../../base-core/index.js').default}
*/
export declare const checkDocker: (this: CoreGenerator) => Promise<void>;
/**
* This is the Generator base class.
* This provides all the public API methods exposed via the module system.
* The public API methods can be directly utilized as well using commonJS require.
*
* The method signatures in public API should not be changed without a major version change
*/
declare const _default: {
checkDocker: (this: CoreGenerator) => Promise<void>;
};
export default _default;