export function IsObject(value: any): value is T { return (typeof value === 'object') && (value !== null); }