Files
NativeScript/nativescript-core/ui/builder/component-builder/component-builder.d.ts
2020-01-17 15:12:28 +02:00

14 lines
508 B
TypeScript

/**
* @module "ui/builder/component-builder"
*/ /** */
import { View } from "../../core/view";
export interface ComponentModule {
component: View;
exports: any;
}
export function getComponentModule(elementName: string, namespace: string, attributes: Object, exports: Object, moduleNamePath?: string, isRootComponent?: boolean): ComponentModule;
export function setPropertyValue(instance: View, instanceModuleExports: Object, pageExports: Object, propertyName: string, propertyValue: any): void;