/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
devtools/projects/shell-browser/src/app/chrome-application-environment.ts
19 строк
527 B
Joey Perrott
build: migrate adev devtools package to use ts_project (#61210)
08 май 2025, 19:38
08 май 2025, 19:38
e2c763a
Код
Авторство
О чём код?
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import {ApplicationEnvironment, Environment} from '../../../ng-devtools'; import {environment} from '../environments/environment'; export class ChromeApplicationEnvironment extends ApplicationEnvironment { override frameSelectorEnabled = true; override get environment(): Environment { return environment; } }