|
1 | 1 | interface Array<T> {
|
2 |
| - /** |
3 |
| - * Returns the item located at the specified index. |
4 |
| - * @param index The zero-based index of the desired code unit. A negative index will count back from the last item. |
5 |
| - */ |
6 |
| - at(index: number): T; |
| 2 | + /** |
| 3 | + * Returns the item located at the specified index. |
| 4 | + * @param index The zero-based index of the desired code unit. A negative index will count back from the last item. |
| 5 | + */ |
| 6 | + at(index: number): T; |
7 | 7 | }
|
8 | 8 |
|
9 | 9 | interface ReadonlyArray<T> {
|
10 |
| - /** |
11 |
| - * Returns the item located at the specified index. |
12 |
| - * @param index The zero-based index of the desired code unit. A negative index will count back from the last item. |
13 |
| - */ |
14 |
| - at(index: number): T; |
| 10 | + /** |
| 11 | + * Returns the item located at the specified index. |
| 12 | + * @param index The zero-based index of the desired code unit. A negative index will count back from the last item. |
| 13 | + */ |
| 14 | + at(index: number): T; |
15 | 15 | }
|
16 | 16 |
|
17 | 17 | interface Int8Array {
|
18 |
| - /** |
19 |
| - * Returns the item located at the specified index. |
20 |
| - * @param index The zero-based index of the desired code unit. A negative index will count back from the last item. |
21 |
| - */ |
22 |
| - at(index: number): number; |
| 18 | + /** |
| 19 | + * Returns the item located at the specified index. |
| 20 | + * @param index The zero-based index of the desired code unit. A negative index will count back from the last item. |
| 21 | + */ |
| 22 | + at(index: number): number; |
23 | 23 | }
|
24 | 24 |
|
25 | 25 | interface Uint8Array {
|
26 |
| - /** |
27 |
| - * Returns the item located at the specified index. |
28 |
| - * @param index The zero-based index of the desired code unit. A negative index will count back from the last item. |
29 |
| - */ |
30 |
| - at(index: number): number; |
| 26 | + /** |
| 27 | + * Returns the item located at the specified index. |
| 28 | + * @param index The zero-based index of the desired code unit. A negative index will count back from the last item. |
| 29 | + */ |
| 30 | + at(index: number): number; |
31 | 31 | }
|
32 | 32 |
|
33 | 33 | interface Uint8ClampedArray {
|
34 |
| - /** |
35 |
| - * Returns the item located at the specified index. |
36 |
| - * @param index The zero-based index of the desired code unit. A negative index will count back from the last item. |
37 |
| - */ |
38 |
| - at(index: number): number; |
| 34 | + /** |
| 35 | + * Returns the item located at the specified index. |
| 36 | + * @param index The zero-based index of the desired code unit. A negative index will count back from the last item. |
| 37 | + */ |
| 38 | + at(index: number): number; |
39 | 39 | }
|
40 | 40 |
|
41 | 41 | interface Int16Array {
|
42 |
| - /** |
43 |
| - * Returns the item located at the specified index. |
44 |
| - * @param index The zero-based index of the desired code unit. A negative index will count back from the last item. |
45 |
| - */ |
46 |
| - at(index: number): number; |
| 42 | + /** |
| 43 | + * Returns the item located at the specified index. |
| 44 | + * @param index The zero-based index of the desired code unit. A negative index will count back from the last item. |
| 45 | + */ |
| 46 | + at(index: number): number; |
47 | 47 | }
|
48 | 48 |
|
49 | 49 | interface Uint16Array {
|
50 |
| - /** |
51 |
| - * Returns the item located at the specified index. |
52 |
| - * @param index The zero-based index of the desired code unit. A negative index will count back from the last item. |
53 |
| - */ |
54 |
| - at(index: number): number; |
| 50 | + /** |
| 51 | + * Returns the item located at the specified index. |
| 52 | + * @param index The zero-based index of the desired code unit. A negative index will count back from the last item. |
| 53 | + */ |
| 54 | + at(index: number): number; |
55 | 55 | }
|
56 | 56 |
|
57 | 57 | interface Int32Array {
|
58 |
| - /** |
59 |
| - * Returns the item located at the specified index. |
60 |
| - * @param index The zero-based index of the desired code unit. A negative index will count back from the last item. |
61 |
| - */ |
62 |
| - at(index: number): number; |
| 58 | + /** |
| 59 | + * Returns the item located at the specified index. |
| 60 | + * @param index The zero-based index of the desired code unit. A negative index will count back from the last item. |
| 61 | + */ |
| 62 | + at(index: number): number; |
63 | 63 | }
|
64 | 64 |
|
65 | 65 | interface Uint32Array {
|
66 |
| - /** |
67 |
| - * Returns the item located at the specified index. |
68 |
| - * @param index The zero-based index of the desired code unit. A negative index will count back from the last item. |
69 |
| - */ |
70 |
| - at(index: number): number; |
| 66 | + /** |
| 67 | + * Returns the item located at the specified index. |
| 68 | + * @param index The zero-based index of the desired code unit. A negative index will count back from the last item. |
| 69 | + */ |
| 70 | + at(index: number): number; |
71 | 71 | }
|
72 | 72 |
|
73 | 73 | interface Float32Array {
|
74 |
| - /** |
75 |
| - * Returns the item located at the specified index. |
76 |
| - * @param index The zero-based index of the desired code unit. A negative index will count back from the last item. |
77 |
| - */ |
78 |
| - at(index: number): number; |
| 74 | + /** |
| 75 | + * Returns the item located at the specified index. |
| 76 | + * @param index The zero-based index of the desired code unit. A negative index will count back from the last item. |
| 77 | + */ |
| 78 | + at(index: number): number; |
79 | 79 | }
|
80 | 80 |
|
81 | 81 | interface Float64Array {
|
82 |
| - /** |
83 |
| - * Returns the item located at the specified index. |
84 |
| - * @param index The zero-based index of the desired code unit. A negative index will count back from the last item. |
85 |
| - */ |
86 |
| - at(index: number): number; |
| 82 | + /** |
| 83 | + * Returns the item located at the specified index. |
| 84 | + * @param index The zero-based index of the desired code unit. A negative index will count back from the last item. |
| 85 | + */ |
| 86 | + at(index: number): number; |
87 | 87 | }
|
88 | 88 |
|
89 | 89 | interface BigInt64Array {
|
90 |
| - /** |
91 |
| - * Returns the item located at the specified index. |
92 |
| - * @param index The zero-based index of the desired code unit. A negative index will count back from the last item. |
93 |
| - */ |
94 |
| - at(index: number): number; |
| 90 | + /** |
| 91 | + * Returns the item located at the specified index. |
| 92 | + * @param index The zero-based index of the desired code unit. A negative index will count back from the last item. |
| 93 | + */ |
| 94 | + at(index: number): number; |
95 | 95 | }
|
96 | 96 |
|
97 | 97 | interface BigUint64Array {
|
98 |
| - /** |
99 |
| - * Returns the item located at the specified index. |
100 |
| - * @param index The zero-based index of the desired code unit. A negative index will count back from the last item. |
101 |
| - */ |
102 |
| - at(index: number): number; |
| 98 | + /** |
| 99 | + * Returns the item located at the specified index. |
| 100 | + * @param index The zero-based index of the desired code unit. A negative index will count back from the last item. |
| 101 | + */ |
| 102 | + at(index: number): number; |
103 | 103 | }
|
0 commit comments