-
-
Notifications
You must be signed in to change notification settings - Fork 677
Expand file tree
/
Copy pathreadonly-tuple.d.ts
More file actions
34 lines (24 loc) · 1.23 KB
/
readonly-tuple.d.ts
File metadata and controls
34 lines (24 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import type {TupleOf} from './tuple-of.d.ts';
/**
Create a type that represents a read-only tuple of the given type and length.
Use-cases:
- Declaring fixed-length tuples with a large number of items.
- Creating a range union (for example, `0 | 1 | 2 | 3 | 4` from the keys of such a type) without having to resort to recursive types.
- Creating a tuple of coordinates with a static length, for example, length of 3 for a 3D vector.
@example
```
import type {ReadonlyTuple} from 'type-fest';
type FencingTeam = ReadonlyTuple<string, 3>;
const guestFencingTeam: FencingTeam = ['Josh', 'Michael', 'Robert'];
// @ts-expect-error
const homeFencingTeam: FencingTeam = ['George', 'John'];
// Error: Type '[string, string]' is not assignable to type 'readonly [string, string, string]'.
// @ts-expect-error
guestFencingTeam.push('Sam');
// Error: Property 'push' does not exist on type 'readonly [string, string, string]'.
```
@deprecated This type will be removed in the next major version. Use the built-in `Readonly` type in combination with the {@link TupleOf} type instead, like `Readonly<TupleOf<Length, Element>>`.
@category Utilities
*/
export type ReadonlyTuple<Element, Length extends number> = Readonly<TupleOf<Length, Element>>;
export {};