mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-18 13:51:27 +08:00
11 lines
471 B
TypeScript
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;
|
|
}
|
|
} |