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