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