1 | import { View } from '../../core/view';
|
2 | export interface ComponentModule {
|
3 | component: View;
|
4 | exports: any;
|
5 | }
|
6 | export declare function getComponentModule(elementName: string, namespace: string, attributes: Object, moduleExports: Object, moduleNamePath?: string, isRootComponent?: boolean): ComponentModule;
|
7 | export declare function setPropertyValue(instance: View, instanceModule: Object, exports: Object, propertyName: string, propertyValue: any): void;
|