Files
NativeScript/tns-core-modules/ui/builder/component-builder.d.ts
Hristo Hristov a582adc561 Hhristov/fix (#3653)
* Fix action-bar systemIcon
Fix CSS applying

* refactoring

* fix console

* remove StyleScope import - it is private and cannot be imported in public .d.ts
2017-02-17 17:21:57 +02:00

11 lines
497 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, moduleNamePath?: string): ComponentModule;
export function setPropertyValue(instance: View, instanceModuleExports: Object, pageExports: Object, propertyName: string, propertyValue: any): void;
export interface ComponentModule {
component: View;
exports: any;
}
}