UNPKG

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