UNPKG

@nwebui/react-niagara-px

Version:
10 lines (9 loc) 393 B
import React, { HTMLAttributes } from "react"; import * as baja from "@nwebui/bajascript"; export interface NativeWidget extends baja.Component { elem: Element; } export interface WidgetProps extends HTMLAttributes<HTMLDivElement> { nativeWidget: NativeWidget; } export declare const Widget: React.ForwardRefExoticComponent<WidgetProps & React.RefAttributes<HTMLDivElement>>;