mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
ceb19c044a
Renaming `shell-chrome` to `shell-browser` contains the build that supports both browsers. PR Close #44952
18 lines
467 B
TypeScript
18 lines
467 B
TypeScript
/**
|
|
* @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.io/license
|
|
*/
|
|
|
|
import {ApplicationEnvironment, Environment} from 'ng-devtools';
|
|
|
|
import {environment} from '../environments/environment';
|
|
|
|
export class ChromeApplicationEnvironment extends ApplicationEnvironment {
|
|
get environment(): Environment {
|
|
return environment;
|
|
}
|
|
}
|