export type INil = null | undefined export type INullOrUndefined = INil export type INullable = T | null export type INilable = T | INil