mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-17 12:57:42 +08:00
11 lines
472 B
TypeScript
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;
|
|
}
|
|
} |