/
githubmirror
/
TypeScript
Обзор
Документация
Войти
/
githubmirror
/
TypeScript
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/lib/es2022.string.d.ts
7 строк
309 B
Kagami Sascha Rosylight
Add `target: "es2022"` (#46291)
04 ноя 2021, 20:55
Не верифицирован
04 ноя 2021, 20:55
ae582a2
Код
Авторство
О чём код?
interface String { /** * Returns a new String consisting of the single UTF-16 code unit located at the specified index. * @param index The zero-based index of the desired code unit. A negative index will count back from the last item. */ at(index: number): string | undefined; }