@liferay/generator-js
Version:
Yeoman generators for Liferay DXP and Portal CE JavaScript projects.
26 lines (25 loc) • 616 B
TypeScript
/**
* SPDX-FileCopyrightText: © 2017 Liferay, Inc. <https://liferay.com>
* SPDX-License-Identifier: LGPL-3.0-or-later
*/
/**
* A class to help modifying the Language.properties file.
*/
export default class {
/**
* @param {Generator} generator a Yeoman generator
*/
constructor(generator: any);
/**
* Add a bunch of properties at once
* @param {object} properties
*/
addProperties(properties: any): void;
/**
* @param {string} name
* @param {string} value
*/
addProperty(name: any, value: any): void;
private _generator;
private _path;
}