//#region src/types/Many.d.ts type MutableMany = T | T[]; type ImmutableMany = T | readonly T[]; /** * Represents a value that can be either a single value or an array of values. */ type Many = { immutable: ImmutableMany; mutable: MutableMany; }[Type]; //#endregion export { Many as t }; //# sourceMappingURL=Many-CC3hL8UU.d.ts.map