goog.provide('M.style.textoverflow');
/**
* @namespace M.style.textoverflow
*/
(function() {
/**
* Left style textoverflow
* @const
* @type {string}
* @public
* @api stable
*/
M.style.textoverflow.ELLIPSIS = "ellipsis";
/**
* Center style textoverflow
* @const
* @type {string}
* @public
* @api stable
*/
M.style.textoverflow.VISIBLE = "visible";
/**
* Right style textoverflow
* @const
* @type {string}
* @public
* @api stable
*/
M.style.textoverflow.HIDDEN = "";
})();