Files
NativeScript/packages/core/ui/builder/component-builder/index.d.ts
2020-07-12 19:08:49 -07:00

10 lines
444 B
TypeScript

import { View } from '../../core/view';
export interface ComponentModule {
component: View;
exports: any;
}
export function getComponentModule(elementName: string, namespace: string, attributes: Object, exports: Object, moduleNamePath?: string, isRootComponent?: boolean): ComponentModule;
export function setPropertyValue(instance: View, instanceModuleExports: Object, pageExports: Object, propertyName: string, propertyValue: any): void;