4 lines
56 B
TypeScript
4 lines
56 B
TypeScript
type Many<T> = T | readonly T[];
|
|
|
|
export type { Many };
|
type Many<T> = T | readonly T[];
|
|
|
|
export type { Many };
|