export function isDefined(t: T | undefined | null | void): t is T { return t != null; }