export type Nullish = null | undefined | void export function notNull(value: T): value is NonNullable { return value != null }