type alias IsNullableimport { type IsNullable } from "https://deno.land/std@0.182.0/testing/types.ts"; Checks if type T is possibly null or undefined. Type ParametersTdefinition: Extract<T, null | undefined> extends never ? false : true