File: lib/viewObject.js
// Copyright 2014, Yahoo! Inc. // Copyrights licensed under the Mit License. See the accompanying LICENSE file for terms. var BaseObject = require('./baseObject'); /** * @class ViewObject * @extends BaseObject */ var ViewObject = BaseObject.extend({}, { TYPE: 'ViewObject' }); module.exports = ViewObject;