Files
NativeScript/tns-core-modules/ui/builder/component-builder.d.ts
2016-12-13 15:51:18 +02:00

11 lines
471 B
TypeScript

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