2018-02-28 17:45:11 +00:00
|
|
|
/**
|
|
|
|
|
* @license
|
2020-05-19 19:08:49 +00:00
|
|
|
* Copyright Google LLC All Rights Reserved.
|
2018-02-28 17:45:11 +00:00
|
|
|
*
|
|
|
|
|
* 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
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @module
|
|
|
|
|
* @description
|
|
|
|
|
* Entry point for all public APIs of the `elements` package.
|
|
|
|
|
*/
|
2024-01-19 19:03:52 +00:00
|
|
|
export {
|
|
|
|
|
createCustomElement,
|
|
|
|
|
NgElement,
|
|
|
|
|
NgElementConfig,
|
|
|
|
|
NgElementConstructor,
|
|
|
|
|
WithProperties,
|
|
|
|
|
} from './src/create-custom-element';
|
|
|
|
|
export {
|
|
|
|
|
NgElementStrategy,
|
|
|
|
|
NgElementStrategyEvent,
|
|
|
|
|
NgElementStrategyFactory,
|
|
|
|
|
} from './src/element-strategy';
|
2018-02-28 17:45:11 +00:00
|
|
|
export {VERSION} from './src/version';
|
|
|
|
|
|
|
|
|
|
// This file only reexports content of the `src` folder. Keep it that way.
|