export function isNotNull(obj: T | null): obj is T { return obj != null; }