react-qml
Version:
11 lines (10 loc) • 376 B
TypeScript
import React from 'react';
declare type Props = {
forwardedRef: React.RefObject<any>;
};
export declare const Component: any;
export declare const Qt: Qml.QmlQt;
declare const createQmlComponent: (source: string, name: string, metadata?: {
defaultProp: string;
}) => React.ForwardRefExoticComponent<Props & React.RefAttributes<{}>>;
export default createQmlComponent;