/** * Created by Menna on 8/21/16. */ export class Grid extends kendo.ui.Grid { constructor(element: any, options?: {}) { if (element === 'undefined' || element == null) { console.error('element is [undefined]'); throw new Error(); } super(element as Element, options as kendo.ui.GridOptions); } }