/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v21.2.19
devtools/src/demo-application-environment.ts
19 строк
528 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 '../projects/ng-devtools'; import {environment} from './environments/environment'; export class DemoApplicationEnvironment extends ApplicationEnvironment { override frameSelectorEnabled = false; override get environment(): Environment { return environment; } }