jsdoc/test/fixtures/moduletag8.js
2015-04-18 15:47:36 -07:00

22 lines
427 B
JavaScript

/** @module color/mixer */
/** The name of the module. */
export const name = 'mixer';
/** The most recent blended color. */
export var lastColor = null;
/** Blend two colors together. */
export function blend(color1, color2) {}
// convert color to array of RGB values (0-255)
function rgbify(color) {}
export {
/**
* Get the red, green, and blue values of a color.
* @function
*/
rgbify as toRgb
}