forked from angular/angular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon.ts
24 lines (21 loc) · 846 Bytes
/
common.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/**
* @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
*/
/**
* Note: We intentionally use cross entry-point relative paths here. This
* is because the primary entry-point is deprecated and we also don't have
* it available in G3.
*/
// @ng_package: ignore-cross-repo-import
import * as ɵangular1 from '../src/common/src/angular1';
// @ng_package: ignore-cross-repo-import
import * as ɵconstants from '../src/common/src/constants';
// @ng_package: ignore-cross-repo-import
import * as ɵupgradeHelper from '../src/common/src/upgrade_helper';
// @ng_package: ignore-cross-repo-import
import * as ɵutil from '../src/common/src/util';
export {ɵangular1, ɵconstants, ɵupgradeHelper, ɵutil};