UNPKG

@liferay/generator-js

Version:

Yeoman generators for Liferay DXP and Portal CE JavaScript projects.

25 lines (24 loc) 568 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 Angular portlets. */ export default class extends Generator { answers: any; namespace: string; /** * Standard Yeoman initialization function */ initializing(): void; /** * Standard Yeoman prompt function */ prompting(): Promise<void>; /** * Standard Yeoman generation function */ writing(): void; }