mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-17 21:01:34 +08:00
10 lines
423 B
TypeScript
10 lines
423 B
TypeScript
import { View } from "../../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;
|
|
}
|