export function isNotNull(obj: T | null): obj is T { return obj != null; } export type ValuesOf = T[keyof T];