/**
* @fileoverview Exposed data type for use outside of DsClient.
* All properties should be exposed to allow use from uncompiled
* code.
*
* @author anders.rejdebrant@spark-vision.com (Anders Rejdebrant)
*/
goog.provide('spv.ds.GuiPath');
goog.require('spv.ds.GuiPathItem');
/**
* @export
* @struct
* @constructor
* @param {Array.<spv.ds.GuiPathItem>} items
*/
spv.ds.GuiPath = function(items)
{
/**
* @type {Array.<spv.ds.GuiPathItem>}
* @nocollapse
*/
this.items = items;
};