Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 | /**
* @module engine
* @description Angular rendering engine for Decaf applications
* @summary The engine module provides core functionality for rendering Angular components
* in Decaf applications. It includes constants, decorators, rendering engines, and utility types
* that enable dynamic component creation, property mapping, and component lifecycle management.
* Key exports include {@link NgxRenderingEngine}, {@link DynamicModule}, and various decorators
* for component configuration.
*/
export * from './constants';
export * from './helpers';
export * from './decorators';
export * from './types';
export * from './interfaces';
export * from './DynamicModule';
export * from './NgxRenderingEngine';
export * from './NgxFormFieldDirective';
export * from '../services/NgxFormService';
export * from './NgxEventHandler';
export * from './NgxModelPageDirective';
export * from './NgxPageDirective';
export * from './NgxFormDirective';
export * from './NgxParentComponentDirective';
export * from './NgxComponentDirective';
export * from '../services/NgxMediaService';
|