/
githubmirror
/
TypeScript
Обзор
Документация
Войти
/
githubmirror
/
TypeScript
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/lib/es2018.regexp.d.ts
19 строк
398 B
Jake Bailey
dprint the codebase (#54820)
17 авг 2023, 00:26
Не верифицирован
17 авг 2023, 00:26
5e8c261
Код
Авторство
О чём код?
interface RegExpMatchArray { groups?: { [key: string]: string; }; } interface RegExpExecArray { groups?: { [key: string]: string; }; } interface RegExp { /** * Returns a Boolean value indicating the state of the dotAll flag (s) used with a regular expression. * Default is false. Read-only. */ readonly dotAll: boolean; }