Relative indexing method
class Array {
at(index: int): any;
}
class String {
at(index: int): string;
}
class %TypedArray% {
at(index: int): number;
}
CommonJS entry points
core-js/proposals/relative-indexing-method
class Array {
at(index: int): any;
}
class String {
at(index: int): string;
}
class %TypedArray% {
at(index: int): number;
}
core-js/proposals/relative-indexing-method