@liferay/generator-js
Version:
Yeoman generators for Liferay DXP and Portal CE JavaScript projects.
21 lines (20 loc) • 457 B
TypeScript
/**
* SPDX-FileCopyrightText: © 2017 Liferay, Inc. <https://liferay.com>
* SPDX-License-Identifier: LGPL-3.0-or-later
*/
/**
* A class to help modifying the .gitignore file.
*/
export default class {
/**
* @param {Generator} generator a Yeoman generator
*/
constructor(generator: any);
/**
* Add a line to .gitignore
* @param {string} line
*/
add(line: any): void;
private _generator;
private _path;
}