/
githubmirror
/
oppia
Обзор
Документация
Войти
/
githubmirror
/
oppia
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
typings/globals.d.ts
8 строк
334 B
Kevin Lee
Fixes #7452: Upgrade eslint plugin (#7459)
26 авг 2019, 01:39
26 авг 2019, 01:39
2b981e8
Код
Авторство
О чём код?
// Using angular without declaration gives the following error: // 'angular' refers to a UMD global, but the current file is a module. // Consider adding an import instead. To fix this, we need to mark // angular as a global. Ref: https://stackoverflow.com/a/42035067 declare global { const angular: ng.IAngularStatic; } export {};