mirror of
https://github.com/sindresorhus/type-fest.git
synced 2025-12-08 19:25:05 +00:00
39 lines
1.3 KiB
TypeScript
39 lines
1.3 KiB
TypeScript
import type {Subtract} from './subtract.d.ts';
|
|
import type {IsEqual} from './is-equal.d.ts';
|
|
|
|
type Recursive<T> = ReadonlyArray<Recursive<T>>;
|
|
|
|
/**
|
|
Creates a type that represents a multidimensional readonly array that of the given type and dimension.
|
|
|
|
Use-cases:
|
|
- Return a n-dimensional array from functions.
|
|
- Declare a n-dimensional array by defining its dimensions rather than declaring `[]` repetitively.
|
|
- Infer the dimensions of a n-dimensional array automatically from function arguments.
|
|
- Avoid the need to know in advance the dimensions of a n-dimensional array allowing them to be dynamic.
|
|
|
|
@example
|
|
```
|
|
import type {MultidimensionalReadonlyArray} from 'type-fest';
|
|
|
|
declare function emptyMatrix<Item = unknown>(): <Dimension extends number>(
|
|
dimensions: Dimension,
|
|
) => MultidimensionalReadonlyArray<Item, Dimension>;
|
|
|
|
const readonlyUnknown3DMatrix = emptyMatrix()(3);
|
|
//=> readonly (readonly (readonly unknown[])[])[]
|
|
|
|
const readonlyBoolean2DMatrix = emptyMatrix<boolean>()(2);
|
|
//=> readonly (readonly boolean[])[]
|
|
```
|
|
|
|
@category Array
|
|
*/
|
|
export type MultidimensionalReadonlyArray<Element, Dimensions extends number> = number extends Dimensions
|
|
? Recursive<Element>
|
|
: IsEqual<Dimensions, 0> extends true
|
|
? Element
|
|
: ReadonlyArray<MultidimensionalReadonlyArray<Element, Subtract<Dimensions, 1>>>;
|
|
|
|
export {};
|