1export function isNotNull<T>(obj: T | null): obj is T { 2 return obj != null; 3} 4 5export type ValuesOf<T> = T[keyof T];