
This is in preparation of using the `KnownFn` type for known TypeScript helpers (in addition to built-in functions/methods). This will in turn allow simplifying the detection of both imported and emitted TypeScript helpers. PR Close #35191
12 lines
425 B
TypeScript
12 lines
425 B
TypeScript
/**
|
|
* @license
|
|
* Copyright Google Inc. 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
|
|
*/
|
|
|
|
export {DynamicValue} from './src/dynamic';
|
|
export {ForeignFunctionResolver, PartialEvaluator} from './src/interface';
|
|
export {EnumValue, KnownFn, ResolvedValue, ResolvedValueArray, ResolvedValueMap} from './src/result';
|