UNPKG

@liferay/generator-js

Version:

Yeoman generators for Liferay DXP and Portal CE JavaScript projects.

24 lines (23 loc) 543 B
/** * SPDX-FileCopyrightText: © 2017 Liferay, Inc. <https://liferay.com> * SPDX-License-Identifier: LGPL-3.0-or-later */ import Generator from 'yeoman-generator'; /** * Implementation of generation of shared bundles. */ export default class extends Generator { answers: any; /** * Standard Yeoman initialization function */ initializing(): void; /** * Standard Yeoman prompt function */ prompting(): Promise<void>; /** * Standard Yeoman generation function */ writing(): void; }