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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524
|
// === goToType ===
// === /tests/cases/fourslash/goToTypeDefinition_arrayType.ts ===
// type User = [|{| defId: 0 |}{ name: string }|];
// declare const users: User[]
// /*GOTO TYPE*/users
//
// type UsersArr = Array<User>
// declare const users2: UsersArr
// --- (line: 7) skipped ---
// === lib.d.ts ===
// --- (line: --) skipped ---
// slice(start?: number, end?: number): T[];
// }
//
// <|interface [|{| defId: 1 |}Array|]<T> {
// /**
// * Gets or sets the length of the array. This is a number one higher than the highest index in the array.
// */
// length: number;
// /**
// * Returns a string representation of an array.
// */
// toString(): string;
// /**
// * Returns a string representation of an array. The elements are converted to string using their toLocaleString methods.
// */
// toLocaleString(): string;
// /**
// * Removes the last element from an array and returns it.
// * If the array is empty, undefined is returned and the array is not modified.
// */
// pop(): T | undefined;
// /**
// * Appends new elements to the end of an array, and returns the new length of the array.
// * @param items New elements to add to the array.
// */
// push(...items: T[]): number;
// /**
// * Combines two or more arrays.
// * This method returns a new array without modifying any existing arrays.
// * @param items Additional arrays and/or items to add to the end of the array.
// */
// concat(...items: ConcatArray<T>[]): T[];
// /**
// * Combines two or more arrays.
// * This method returns a new array without modifying any existing arrays.
// * @param items Additional arrays and/or items to add to the end of the array.
// */
// concat(...items: (T | ConcatArray<T>)[]): T[];
// /**
// * Adds all the elements of an array into a string, separated by the specified separator string.
// * @param separator A string used to separate one element of the array from the next in the resulting string. If omitted, the array elements are separated with a comma.
// */
// join(separator?: string): string;
// /**
// * Reverses the elements in an array in place.
// * This method mutates the array and returns a reference to the same array.
// */
// reverse(): T[];
// /**
// * Removes the first element from an array and returns it.
// * If the array is empty, undefined is returned and the array is not modified.
// */
// shift(): T | undefined;
// /**
// * Returns a copy of a section of an array.
// * For both start and end, a negative index can be used to indicate an offset from the end of the array.
// * For example, -2 refers to the second to last element of the array.
// * @param start The beginning index of the specified portion of the array.
// * If start is undefined, then the slice begins at index 0.
// * @param end The end index of the specified portion of the array. This is exclusive of the element at the index 'end'.
// * If end is undefined, then the slice extends to the end of the array.
// */
// slice(start?: number, end?: number): T[];
// /**
// * Sorts an array in place.
// * This method mutates the array and returns a reference to the same array.
// * @param compareFn Function used to determine the order of the elements. It is expected to return
// * a negative value if the first argument is less than the second argument, zero if they're equal, and a positive
// * value otherwise. If omitted, the elements are sorted in ascending, ASCII character order.
// * ```ts
// * [11,2,22,1].sort((a, b) => a - b)
// * ```
// */
// sort(compareFn?: (a: T, b: T) => number): this;
// /**
// * Removes elements from an array and, if necessary, inserts new elements in their place, returning the deleted elements.
// * @param start The zero-based location in the array from which to start removing elements.
// * @param deleteCount The number of elements to remove.
// * @returns An array containing the elements that were deleted.
// */
// splice(start: number, deleteCount?: number): T[];
// /**
// * Removes elements from an array and, if necessary, inserts new elements in their place, returning the deleted elements.
// * @param start The zero-based location in the array from which to start removing elements.
// * @param deleteCount The number of elements to remove.
// * @param items Elements to insert into the array in place of the deleted elements.
// * @returns An array containing the elements that were deleted.
// */
// splice(start: number, deleteCount: number, ...items: T[]): T[];
// /**
// * Inserts new elements at the start of an array, and returns the new length of the array.
// * @param items Elements to insert at the start of the array.
// */
// unshift(...items: T[]): number;
// /**
// * Returns the index of the first occurrence of a value in an array, or -1 if it is not present.
// * @param searchElement The value to locate in the array.
// * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the search starts at index 0.
// */
// indexOf(searchElement: T, fromIndex?: number): number;
// /**
// * Returns the index of the last occurrence of a specified value in an array, or -1 if it is not present.
// * @param searchElement The value to locate in the array.
// * @param fromIndex The array index at which to begin searching backward. If fromIndex is omitted, the search starts at the last index in the array.
// */
// lastIndexOf(searchElement: T, fromIndex?: number): number;
// /**
// * Determines whether all the members of an array satisfy the specified test.
// * @param predicate A function that accepts up to three arguments. The every method calls
// * the predicate function for each element in the array until the predicate returns a value
// * which is coercible to the Boolean value false, or until the end of the array.
// * @param thisArg An object to which the this keyword can refer in the predicate function.
// * If thisArg is omitted, undefined is used as the this value.
// */
// every<S extends T>(predicate: (value: T, index: number, array: T[]) => value is S, thisArg?: any): this is S[];
// /**
// * Determines whether all the members of an array satisfy the specified test.
// * @param predicate A function that accepts up to three arguments. The every method calls
// * the predicate function for each element in the array until the predicate returns a value
// * which is coercible to the Boolean value false, or until the end of the array.
// * @param thisArg An object to which the this keyword can refer in the predicate function.
// * If thisArg is omitted, undefined is used as the this value.
// */
// every(predicate: (value: T, index: number, array: T[]) => unknown, thisArg?: any): boolean;
// /**
// * Determines whether the specified callback function returns true for any element of an array.
// * @param predicate A function that accepts up to three arguments. The some method calls
// * the predicate function for each element in the array until the predicate returns a value
// * which is coercible to the Boolean value true, or until the end of the array.
// * @param thisArg An object to which the this keyword can refer in the predicate function.
// * If thisArg is omitted, undefined is used as the this value.
// */
// some(predicate: (value: T, index: number, array: T[]) => unknown, thisArg?: any): boolean;
// /**
// * Performs the specified action for each element in an array.
// * @param callbackfn A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the array.
// * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.
// */
// forEach(callbackfn: (value: T, index: number, array: T[]) => void, thisArg?: any): void;
// /**
// * Calls a defined callback function on each element of an array, and returns an array that contains the results.
// * @param callbackfn A function that accepts up to three arguments. The map method calls the callbackfn function one time for each element in the array.
// * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.
// */
// map<U>(callbackfn: (value: T, index: number, array: T[]) => U, thisArg?: any): U[];
// /**
// * Returns the elements of an array that meet the condition specified in a callback function.
// * @param predicate A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array.
// * @param thisArg An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.
// */
// filter<S extends T>(predicate: (value: T, index: number, array: T[]) => value is S, thisArg?: any): S[];
// /**
// * Returns the elements of an array that meet the condition specified in a callback function.
// * @param predicate A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array.
// * @param thisArg An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.
// */
// filter(predicate: (value: T, index: number, array: T[]) => unknown, thisArg?: any): T[];
// /**
// * Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.
// * @param callbackfn A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.
// * @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.
// */
// reduce(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T): T;
// reduce(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T, initialValue: T): T;
// /**
// * Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.
// * @param callbackfn A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.
// * @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.
// */
// reduce<U>(callbackfn: (previousValue: U, currentValue: T, currentIndex: number, array: T[]) => U, initialValue: U): U;
// /**
// * Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.
// * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array.
// * @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.
// */
// reduceRight(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T): T;
// reduceRight(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T, initialValue: T): T;
// /**
// * Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.
// * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array.
// * @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.
// */
// reduceRight<U>(callbackfn: (previousValue: U, currentValue: T, currentIndex: number, array: T[]) => U, initialValue: U): U;
//
// [n: number]: T;
// }|>
//
// interface ArrayConstructor {
// new(arrayLength?: number): any[];
// --- (line: --) skipped ---
// --- (line: --) skipped ---
// readonly prototype: any[];
// }
//
// <|declare var [|{| defId: 2 |}Array|]: ArrayConstructor;|>
//
// interface TypedPropertyDescriptor<T> {
// enumerable?: boolean;
// --- (line: --) skipped ---
// === Details ===
[
{
"defId": 0,
"kind": "",
"name": "__type",
"containerName": "",
"isLocal": false,
"isAmbient": false,
"unverified": false,
"failedAliasResolution": false
},
{
"defId": 1,
"kind": "var",
"name": "Array",
"containerName": "",
"isLocal": false,
"isAmbient": true,
"unverified": false,
"failedAliasResolution": false
},
{
"defId": 2,
"kind": "var",
"name": "Array",
"containerName": "",
"isLocal": false,
"isAmbient": true,
"unverified": false,
"failedAliasResolution": false
}
]
// === goToType ===
// === /tests/cases/fourslash/goToTypeDefinition_arrayType.ts ===
// type User = [|{| defId: 0 |}{ name: string }|];
// declare const users: User[]
// users
//
// type UsersArr = Array<User>
// declare const users2: UsersArr
// /*GOTO TYPE*/users2
//
// class CustomArray<T> extends Array<T> { immutableReverse() { return [...this].reverse() } }
// declare const users3: CustomArray<User>
// users3
// === lib.d.ts ===
// --- (line: --) skipped ---
// slice(start?: number, end?: number): T[];
// }
//
// <|interface [|{| defId: 1 |}Array|]<T> {
// /**
// * Gets or sets the length of the array. This is a number one higher than the highest index in the array.
// */
// length: number;
// /**
// * Returns a string representation of an array.
// */
// toString(): string;
// /**
// * Returns a string representation of an array. The elements are converted to string using their toLocaleString methods.
// */
// toLocaleString(): string;
// /**
// * Removes the last element from an array and returns it.
// * If the array is empty, undefined is returned and the array is not modified.
// */
// pop(): T | undefined;
// /**
// * Appends new elements to the end of an array, and returns the new length of the array.
// * @param items New elements to add to the array.
// */
// push(...items: T[]): number;
// /**
// * Combines two or more arrays.
// * This method returns a new array without modifying any existing arrays.
// * @param items Additional arrays and/or items to add to the end of the array.
// */
// concat(...items: ConcatArray<T>[]): T[];
// /**
// * Combines two or more arrays.
// * This method returns a new array without modifying any existing arrays.
// * @param items Additional arrays and/or items to add to the end of the array.
// */
// concat(...items: (T | ConcatArray<T>)[]): T[];
// /**
// * Adds all the elements of an array into a string, separated by the specified separator string.
// * @param separator A string used to separate one element of the array from the next in the resulting string. If omitted, the array elements are separated with a comma.
// */
// join(separator?: string): string;
// /**
// * Reverses the elements in an array in place.
// * This method mutates the array and returns a reference to the same array.
// */
// reverse(): T[];
// /**
// * Removes the first element from an array and returns it.
// * If the array is empty, undefined is returned and the array is not modified.
// */
// shift(): T | undefined;
// /**
// * Returns a copy of a section of an array.
// * For both start and end, a negative index can be used to indicate an offset from the end of the array.
// * For example, -2 refers to the second to last element of the array.
// * @param start The beginning index of the specified portion of the array.
// * If start is undefined, then the slice begins at index 0.
// * @param end The end index of the specified portion of the array. This is exclusive of the element at the index 'end'.
// * If end is undefined, then the slice extends to the end of the array.
// */
// slice(start?: number, end?: number): T[];
// /**
// * Sorts an array in place.
// * This method mutates the array and returns a reference to the same array.
// * @param compareFn Function used to determine the order of the elements. It is expected to return
// * a negative value if the first argument is less than the second argument, zero if they're equal, and a positive
// * value otherwise. If omitted, the elements are sorted in ascending, ASCII character order.
// * ```ts
// * [11,2,22,1].sort((a, b) => a - b)
// * ```
// */
// sort(compareFn?: (a: T, b: T) => number): this;
// /**
// * Removes elements from an array and, if necessary, inserts new elements in their place, returning the deleted elements.
// * @param start The zero-based location in the array from which to start removing elements.
// * @param deleteCount The number of elements to remove.
// * @returns An array containing the elements that were deleted.
// */
// splice(start: number, deleteCount?: number): T[];
// /**
// * Removes elements from an array and, if necessary, inserts new elements in their place, returning the deleted elements.
// * @param start The zero-based location in the array from which to start removing elements.
// * @param deleteCount The number of elements to remove.
// * @param items Elements to insert into the array in place of the deleted elements.
// * @returns An array containing the elements that were deleted.
// */
// splice(start: number, deleteCount: number, ...items: T[]): T[];
// /**
// * Inserts new elements at the start of an array, and returns the new length of the array.
// * @param items Elements to insert at the start of the array.
// */
// unshift(...items: T[]): number;
// /**
// * Returns the index of the first occurrence of a value in an array, or -1 if it is not present.
// * @param searchElement The value to locate in the array.
// * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the search starts at index 0.
// */
// indexOf(searchElement: T, fromIndex?: number): number;
// /**
// * Returns the index of the last occurrence of a specified value in an array, or -1 if it is not present.
// * @param searchElement The value to locate in the array.
// * @param fromIndex The array index at which to begin searching backward. If fromIndex is omitted, the search starts at the last index in the array.
// */
// lastIndexOf(searchElement: T, fromIndex?: number): number;
// /**
// * Determines whether all the members of an array satisfy the specified test.
// * @param predicate A function that accepts up to three arguments. The every method calls
// * the predicate function for each element in the array until the predicate returns a value
// * which is coercible to the Boolean value false, or until the end of the array.
// * @param thisArg An object to which the this keyword can refer in the predicate function.
// * If thisArg is omitted, undefined is used as the this value.
// */
// every<S extends T>(predicate: (value: T, index: number, array: T[]) => value is S, thisArg?: any): this is S[];
// /**
// * Determines whether all the members of an array satisfy the specified test.
// * @param predicate A function that accepts up to three arguments. The every method calls
// * the predicate function for each element in the array until the predicate returns a value
// * which is coercible to the Boolean value false, or until the end of the array.
// * @param thisArg An object to which the this keyword can refer in the predicate function.
// * If thisArg is omitted, undefined is used as the this value.
// */
// every(predicate: (value: T, index: number, array: T[]) => unknown, thisArg?: any): boolean;
// /**
// * Determines whether the specified callback function returns true for any element of an array.
// * @param predicate A function that accepts up to three arguments. The some method calls
// * the predicate function for each element in the array until the predicate returns a value
// * which is coercible to the Boolean value true, or until the end of the array.
// * @param thisArg An object to which the this keyword can refer in the predicate function.
// * If thisArg is omitted, undefined is used as the this value.
// */
// some(predicate: (value: T, index: number, array: T[]) => unknown, thisArg?: any): boolean;
// /**
// * Performs the specified action for each element in an array.
// * @param callbackfn A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the array.
// * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.
// */
// forEach(callbackfn: (value: T, index: number, array: T[]) => void, thisArg?: any): void;
// /**
// * Calls a defined callback function on each element of an array, and returns an array that contains the results.
// * @param callbackfn A function that accepts up to three arguments. The map method calls the callbackfn function one time for each element in the array.
// * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.
// */
// map<U>(callbackfn: (value: T, index: number, array: T[]) => U, thisArg?: any): U[];
// /**
// * Returns the elements of an array that meet the condition specified in a callback function.
// * @param predicate A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array.
// * @param thisArg An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.
// */
// filter<S extends T>(predicate: (value: T, index: number, array: T[]) => value is S, thisArg?: any): S[];
// /**
// * Returns the elements of an array that meet the condition specified in a callback function.
// * @param predicate A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array.
// * @param thisArg An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.
// */
// filter(predicate: (value: T, index: number, array: T[]) => unknown, thisArg?: any): T[];
// /**
// * Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.
// * @param callbackfn A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.
// * @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.
// */
// reduce(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T): T;
// reduce(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T, initialValue: T): T;
// /**
// * Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.
// * @param callbackfn A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.
// * @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.
// */
// reduce<U>(callbackfn: (previousValue: U, currentValue: T, currentIndex: number, array: T[]) => U, initialValue: U): U;
// /**
// * Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.
// * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array.
// * @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.
// */
// reduceRight(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T): T;
// reduceRight(callbackfn: (previousValue: T, currentValue: T, currentIndex: number, array: T[]) => T, initialValue: T): T;
// /**
// * Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.
// * @param callbackfn A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array.
// * @param initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.
// */
// reduceRight<U>(callbackfn: (previousValue: U, currentValue: T, currentIndex: number, array: T[]) => U, initialValue: U): U;
//
// [n: number]: T;
// }|>
//
// interface ArrayConstructor {
// new(arrayLength?: number): any[];
// --- (line: --) skipped ---
// --- (line: --) skipped ---
// readonly prototype: any[];
// }
//
// <|declare var [|{| defId: 2 |}Array|]: ArrayConstructor;|>
//
// interface TypedPropertyDescriptor<T> {
// enumerable?: boolean;
// --- (line: --) skipped ---
// === Details ===
[
{
"defId": 0,
"kind": "",
"name": "__type",
"containerName": "",
"isLocal": false,
"isAmbient": false,
"unverified": false,
"failedAliasResolution": false
},
{
"defId": 1,
"kind": "var",
"name": "Array",
"containerName": "",
"isLocal": false,
"isAmbient": true,
"unverified": false,
"failedAliasResolution": false
},
{
"defId": 2,
"kind": "var",
"name": "Array",
"containerName": "",
"isLocal": false,
"isAmbient": true,
"unverified": false,
"failedAliasResolution": false
}
]
// === goToType ===
// === /tests/cases/fourslash/goToTypeDefinition_arrayType.ts ===
// --- (line: 5) skipped ---
// declare const users2: UsersArr
// users2
//
// <|class [|CustomArray|]<T> extends Array<T> { immutableReverse() { return [...this].reverse() } }|>
// declare const users3: CustomArray<User>
// /*GOTO TYPE*/users3
// === Details ===
[
{
"kind": "class",
"name": "CustomArray",
"containerName": "",
"isLocal": false,
"isAmbient": false,
"unverified": false,
"failedAliasResolution": false
}
]
|