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

11 lines
472 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;
}
}