import { HasNullOrMore, RemoveNull } from "../null"; import { HasUndefinedOrMore, RemoveUndefined } from "../undefined"; import { ExactlyCustomArray } from "./exactlyCustomArray"; export type ExactlyCustomArrayOrNullOrUndefined = ExactlyCustomArray>> & HasUndefinedOrMore & HasNullOrMore;