1interface String {
2 /**
3 * Returns a new String consisting of the single UTF-16 code unit 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): string | undefined;
7}
8