forked from angular/angular
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobal_utils_api.ts
More file actions
32 lines (30 loc) · 892 Bytes
/
global_utils_api.ts
File metadata and controls
32 lines (30 loc) · 892 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/**
* @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
*/
/**
* @fileoverview
* This file is the index file collecting all of the symbols published on the global.ng namespace.
*
* The reason why this file/module is separate global_utils.ts file is that we use this file
* to generate a d.ts file containing all the published symbols that is then compared to the golden
* file in the public_api_guard test.
*/
export {applyChanges} from './util/change_detection_utils';
export {
ComponentDebugMetadata,
DirectiveDebugMetadata,
getComponent,
getContext,
getDirectiveMetadata,
getDirectives,
getHostElement,
getInjector,
getListeners,
getOwningComponent,
getRootComponents,
Listener,
} from './util/discovery_utils';