export class Objects { static jsonClone( obj:T ):T { let jsonData = JSON.stringify( obj ); return JSON.parse( jsonData ) as T; } }