daniellmb/AQUA

View on GitHub
externs/nodejs/modules/colors.js

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Type definition for colors.js.
 *
 * @externs
 * @author Daniel Lamb <dlamb.open.source@gmail.com>
 */



/**
 * Console Colors [see](https://github.com/Marak/colors.js)
 * @constructor
 * @nosideeffects
 */
var Colors = function() { };


/**
 * Cyan text color
 * @param {...*} var_args
 */
Colors.prototype.cyan = function(var_args) {};


/**
 * Yellow text color
 * @param {...*} var_args
 */
Colors.prototype.yellow = function(var_args) {};


/**
 * Green text color
 * @param {...*} var_args
 */
Colors.prototype.green = function(var_args) {};