/** * Array types * * @license * Copyright 2022-2026 Matter.js Authors * SPDX-License-Identifier: Apache-2.0 */ export type AtLeastOne = ArrayMinLength; type BuildArrayMinLength = Current["length"] extends N ? [...Current, ...T[]] : BuildArrayMinLength; export type ArrayMinLength = BuildArrayMinLength;