4 lines
103 B
TypeScript
Raw Normal View History

2026-05-31 13:21:13 +02:00
//#region src/compat/_internal/Many.d.ts
type Many<T> = T | readonly T[];
//#endregion
export { Many };