export function isDefined(obj: T): obj is NonNullable { return obj !== undefined && obj !== null; }