@liferay/generator-js
Version:
Yeoman generators for Liferay DXP and Portal CE JavaScript projects.
22 lines (21 loc) • 569 B
TypeScript
/**
* SPDX-FileCopyrightText: © 2017 Liferay, Inc. <https://liferay.com>
* SPDX-License-Identifier: LGPL-3.0-or-later
*/
/**
* A class to help modifying the styles.css file.
*/
export default class {
/**
* @param {Generator} generator a Yeoman generator
*/
constructor(generator: any);
/**
* Add a CSS rule to styles.css file.
* @param {String} selector CSS selector
* @param {Array} values string list of CSS attributes
*/
addRule(selector: any, ...values: any[]): void;
private _generator;
private _path;
}