function getExtendClass( obj ) { function cls() {} cls.prototype = obj; return; };
class UseGuide extends getExtendClass( kendo.data.ObservableObject ) { constructor(height, width) { super(); } }